mirror of
https://github.com/NixOS/nixpkgs.git
synced 2026-08-27 02:34:53 +00:00
16 lines
225 B
Nix
16 lines
225 B
Nix
{
|
|
mkKdeDerivation,
|
|
pam,
|
|
wayland-scanner,
|
|
qqc2-breeze-style,
|
|
}:
|
|
mkKdeDerivation {
|
|
pname = "kscreenlocker";
|
|
|
|
extraNativeBuildInputs = [ wayland-scanner ];
|
|
extraBuildInputs = [
|
|
pam
|
|
qqc2-breeze-style
|
|
];
|
|
}
|