about summary refs log tree commit diff
path: root/nixpkgs/pkgs/desktops/plasma-5/sddm-kcm.nix
blob: 7c44e0f140d42a0fb9c2b3bf4f8f41f7871b85ac (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
{ mkDerivation
, lib
, extra-cmake-modules
, shared-mime-info
, libpthreadstubs
, libXcursor
, libXdmcp
, qtbase
, qtquickcontrols2
, qtx11extras
, karchive
, kcmutils
, kdeclarative
, ki18n
, kio
, knewstuff
}:

mkDerivation {
  name = "sddm-kcm";
  nativeBuildInputs = [ extra-cmake-modules shared-mime-info ];
  buildInputs = [
    libpthreadstubs
    libXcursor
    libXdmcp
    qtquickcontrols2
    qtx11extras
    karchive
    kcmutils
    kdeclarative
    ki18n
    kio
    knewstuff
  ];
}