nixpkgs/pkgs/desktops/plasma-5/kscreenlocker.nix
2023-04-10 17:52:43 +02:00

41 lines
596 B
Nix

{ mkDerivation
, extra-cmake-modules
, kdoctools
, kcmutils
, kcrash
, kdeclarative
, kglobalaccel
, kidletime
, libkscreen
, kwayland
, libXcursor
, pam
, plasma-framework
, qtdeclarative
, qtx11extras
, wayland
, layer-shell-qt
}:
mkDerivation {
pname = "kscreenlocker";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
buildInputs = [
kcmutils
kcrash
kdeclarative
kglobalaccel
kidletime
libkscreen
kwayland
libXcursor
pam
plasma-framework
qtdeclarative
qtx11extras
wayland
layer-shell-qt
];
outputs = [ "out" "dev" ];
}