summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.5/ksysguard.nix
blob: d47f9215a41ab639e1f1008026065ca84929dac9 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff
, kiconthemes, libksysguard, makeQtWrapper
}:

plasmaPackage {
  name = "ksysguard";
  nativeBuildInputs = [
    extra-cmake-modules
    kdoctools
    makeQtWrapper
  ];
  buildInputs = [
    kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
  ];
  propagatedBuildInputs = [ kdelibs4support ki18n ];
  postInstall = ''
    wrapQtProgram "$out/bin/ksysguardd"
  '';
}