mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-20 04:33:57 +00:00
14 lines
332 B
Nix
14 lines
332 B
Nix
{
|
|
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 ];
|
|
}
|