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

mkDerivation {
  pname = "kidletime";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ qtx11extras wayland wayland-protocols plasma-wayland-protocols ];
  propagatedBuildInputs = [ qtbase ];
}