nixpkgs/pkgs/desktops/plasma-5/kscreenlocker.nix

19 lines
592 B
Nix
Raw Normal View History

2016-08-04 14:13:53 +00:00
{
2020-12-05 19:35:37 +00:00
mkDerivation, lib,
extra-cmake-modules, kdoctools,
2016-08-04 14:13:53 +00:00
kcmutils, kcrash, kdeclarative, kdelibs4support, kglobalaccel, kidletime,
2020-12-05 19:35:37 +00:00
kwayland, libXcursor, pam, plasma-framework, qtbase, qtdeclarative, qtx11extras,
wayland,
2016-04-21 16:01:22 +00:00
}:
mkDerivation {
2016-04-21 16:01:22 +00:00
name = "kscreenlocker";
2020-12-05 19:35:37 +00:00
meta.broken = lib.versionOlder qtbase.version "5.15.0";
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
2017-05-26 20:44:36 +00:00
buildInputs = [
2016-08-04 14:13:53 +00:00
kcmutils kcrash kdeclarative kdelibs4support kglobalaccel kidletime kwayland
libXcursor pam plasma-framework qtdeclarative qtx11extras wayland
2016-04-21 16:01:22 +00:00
];
2017-05-26 20:44:36 +00:00
outputs = [ "out" "dev" ];
2016-04-21 16:01:22 +00:00
}