mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-26 17:03:01 +00:00
ce77225e21
This is the thing you want to look at.
14 lines
236 B
Nix
14 lines
236 B
Nix
{
|
|
mkKdeDerivation,
|
|
qtwayland,
|
|
pkg-config,
|
|
wayland-protocols,
|
|
xorg,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kidletime";
|
|
|
|
extraNativeBuildInputs = [pkg-config];
|
|
extraBuildInputs = [qtwayland xorg.libXScrnSaver wayland-protocols];
|
|
}
|