summary refs log tree commit diff
path: root/pkgs/desktops/plasma-5/ksystemstats.nix
blob: 5b552a1f7860557ac67c769abfc3ba84ffcfc0e4 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
{ mkDerivation
, lib
, extra-cmake-modules
, libksysguard
, libnl
, lm_sensors
, networkmanager-qt
}:

mkDerivation {
  pname = "ksystemstats";
  env.NIX_CFLAGS_COMPILE = toString [ "-I${lib.getBin libksysguard}/share" ];
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ libksysguard libnl lm_sensors networkmanager-qt ];
}