about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/kscreenlocker.nix
blob: d53d808e10844d8a69d5159dadba5cea3bc5f388 (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
, lib
, extra-cmake-modules
, kdoctools
, kcmutils
, kcrash
, kdeclarative
, kglobalaccel
, kidletime
, kwayland
, libXcursor
, pam
, plasma-framework
, qtbase
, qtdeclarative
, qtx11extras
, wayland
, layer-shell-qt
}:

mkDerivation {
  pname = "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" ];
}