mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
15 lines
225 B
Nix
15 lines
225 B
Nix
{
|
|
mkKdeDerivation,
|
|
pam,
|
|
wayland-scanner,
|
|
qqc2-breeze-style,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kscreenlocker";
|
|
|
|
extraNativeBuildInputs = [ wayland-scanner ];
|
|
extraBuildInputs = [
|
|
pam
|
|
qqc2-breeze-style
|
|
];
|
|
}
|