about summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/libksysguard/default.nix
blob: 8e9be6f743cf93b30abb20b51da0c8f389783a48 (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
41
42
43
44
45
46
47
48
49
50
51
52
53
54
{ mkDerivation
, lib
, extra-cmake-modules
, kauth
, kcompletion
, kconfig
, kconfigwidgets
, kcoreaddons
, ki18n
, kiconthemes
, knewstuff
, kservice
, kwidgetsaddons
, kwindowsystem
, plasma-framework
, qtbase
, qtscript
, qtwebengine
, qtx11extras
, libnl
, libpcap
, qtsensors
, lm_sensors
}:

mkDerivation {
  pname = "libksysguard";
  patches = [
    ./0001-qdiriterator-follow-symlinks.patch
  ];
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [
    kauth
    kconfig
    ki18n
    kiconthemes
    kwindowsystem
    kcompletion
    kconfigwidgets
    kcoreaddons
    kservice
    kwidgetsaddons
    plasma-framework
    qtscript
    qtx11extras
    qtwebengine
    knewstuff
    libnl
    libpcap
    qtsensors
    lm_sensors
  ];
  outputs = [ "bin" "dev" "out" ];
}