summary refs log tree commit diff
path: root/pkgs/applications/kde/kruler.nix
blob: 460675e8cb15638b30e52a0790d93a868b214c3c (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 {
  pname = "kruler";
  meta = {
    license = with lib.licenses; [ gpl2 ];
    maintainers = [ lib.maintainers.vandenoever ];
  };
  nativeBuildInputs = [ extra-cmake-modules kdoctools ];
  buildInputs = [
    kwindowsystem knotifications kxmlgui qtx11extras
  ];
}