summaryrefslogtreecommitdiffstats
path: root/pkgs/kde/plasma/libksysguard/default.nix
blob: d3de2807802f00f0253600ad7b5a51e1ac3ecbd3 (plain)
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
{
  mkKdeDerivation,
  qtwebchannel,
  qtwebengine,
  qttools,
  kitemmodels,
  kquickcharts,
  libpcap,
  libnl,
  lm_sensors,
}:
mkKdeDerivation {
  pname = "libksysguard";

  patches = [
    ./helper-path.patch
  ];

  extraBuildInputs = [
    qtwebchannel
    qtwebengine
    qttools
    libpcap
    libnl
    lm_sensors
  ];

  extraPropagatedBuildInputs = [
    kitemmodels
    kquickcharts
  ];
}