nixpkgs/pkgs/desktops/plasma-5/kscreenlocker.nix
Yaroslav Bolyukin b0fb5a4d99 kscreenlocker: add layer-shell-qt dependency
Signed-off-by: Yaroslav Bolyukin <iam@lach.pw>
2021-08-05 17:01:19 +09:00

19 lines
536 B
Nix

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