bb584b27e9
GitOrigin-RevId: 5181d5945eda382ff6a9ca3e072ed6ea9b547fee
12 lines
225 B
Nix
12 lines
225 B
Nix
{
|
|
mkDerivation,
|
|
extra-cmake-modules,
|
|
qtbase, qtx11extras
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "kidletime";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
buildInputs = [ qtx11extras ];
|
|
propagatedBuildInputs = [ qtbase ];
|
|
}
|