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

mkDerivation {
  name = "kidletime";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtx11extras ];
  propagatedBuildInputs = [ qtbase ];
}