summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix
blob: 637d539189d5bc4ac9e3ab83e0d696fadf197d87 (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
  ];
  propagatedBuildInputs = [
    kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
    kdelibs4support ki18n
  ];
  postInstall = ''
    wrapQtProgram "$out/bin/ksysguardd"
  '';
}