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

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