mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
cec8d1fd0e
Otherwise, wayland-scanner would be picked up from the wayland in buildInputs, which isn't cross-friendly and will stop working when we split wayland-scanner into a separate package.
42 lines
630 B
Nix
42 lines
630 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, wayland-scanner
|
|
, 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 wayland-scanner ];
|
|
buildInputs = [
|
|
kcmutils
|
|
kcrash
|
|
kdeclarative
|
|
kglobalaccel
|
|
kidletime
|
|
libkscreen
|
|
kwayland
|
|
libXcursor
|
|
pam
|
|
plasma-framework
|
|
qtdeclarative
|
|
qtx11extras
|
|
wayland
|
|
layer-shell-qt
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|