summary refs log tree commit diff
path: root/pkgs/applications/kde/kruler.nix
blob: 2018245cfcb2b6649620f5fca87b3e700f60e590 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
{
  mkDerivation, lib,
  extra-cmake-modules, kdoctools,
  knotifications, kwindowsystem, kxmlgui, qtx11extras
}:

mkDerivation {
  name = "kruler";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.vandenoever ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kwindowsystem knotifications kxmlgui qtx11extras
  ];
}