mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 07:31:26 +00:00
16 lines
476 B
Nix
16 lines
476 B
Nix
{
|
|
plasmaPackage,
|
|
extra-cmake-modules, kdoctools,
|
|
kcmutils, kcrash, kdeclarative, kdelibs4support, kglobalaccel, kidletime,
|
|
kwayland, libXcursor, pam, plasma-framework, qtdeclarative, wayland
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "kscreenlocker";
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [
|
|
kcmutils kcrash kdeclarative kdelibs4support kglobalaccel kidletime kwayland
|
|
libXcursor pam plasma-framework qtdeclarative wayland
|
|
];
|
|
}
|