about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/kscreenlocker.nix
blob: b7510cb95bced705c38de151a88b62f1d956077c (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
{ 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" ];
}