nixpkgs/pkgs/desktops/kde-5/plasma/ksysguard.nix

21 lines
452 B
Nix
Raw Normal View History

2016-07-30 10:36:52 -04:00
{ plasmaPackage, ecm, kdoctools, kconfig
2016-04-21 12:01:22 -04:00
, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff
, kiconthemes, libksysguard, makeQtWrapper
}:
plasmaPackage {
name = "ksysguard";
nativeBuildInputs = [
2016-07-30 10:36:52 -04:00
ecm
2016-04-21 12:01:22 -04:00
kdoctools
makeQtWrapper
];
propagatedBuildInputs = [
2016-04-21 12:01:22 -04:00
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
kdelibs4support ki18n
2016-04-21 12:01:22 -04:00
];
postInstall = ''
wrapQtProgram "$out/bin/ksysguardd"
'';
}