nixpkgs/pkgs/development/libraries/kde-frameworks/kidletime.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

14 lines
332 B
Nix
Raw Normal View History

{
mkDerivation,
extra-cmake-modules,
2022-10-12 08:30:41 +00:00
qtbase, qtx11extras,
wayland, wayland-protocols, plasma-wayland-protocols
2016-04-21 15:32:21 +00:00
}:
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "kidletime";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ qtx11extras wayland wayland-protocols plasma-wayland-protocols ];
propagatedBuildInputs = [ qtbase ];
2016-04-21 15:32:21 +00:00
}