mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-04 03:53:56 +00:00
13 lines
195 B
Nix
13 lines
195 B
Nix
{
|
|
mkKdeDerivation,
|
|
pam,
|
|
wayland,
|
|
qqc2-breeze-style,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kscreenlocker";
|
|
|
|
extraNativeBuildInputs = [wayland];
|
|
extraBuildInputs = [pam qqc2-breeze-style];
|
|
}
|