summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.13/kidletime.nix
blob: fc0865600239f77b2c916bafa9fd4b15cc84c929 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ kdeFramework, lib
, extra-cmake-modules
, qtbase
, qtx11extras
}:

kdeFramework {
  name = "kidletime";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtx11extras ];
  propagatedBuildInputs = [ qtbase ];
  meta = {
    maintainers = [ lib.maintainers.ttuegel ];
  };
}