mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-16 02:33:25 +00:00
13 lines
225 B
Nix
13 lines
225 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
qtbase, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kidletime";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|