3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/desktops/kde-5/plasma-5.6/ksysguard.nix

21 lines
484 B
Nix
Raw Normal View History

2016-04-21 17:01:22 +01:00
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff
, kiconthemes, libksysguard, makeQtWrapper
}:
plasmaPackage {
name = "ksysguard";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeQtWrapper
];
propagatedBuildInputs = [
2016-04-21 17:01:22 +01:00
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
kdelibs4support ki18n
2016-04-21 17:01:22 +01:00
];
postInstall = ''
wrapQtProgram "$out/bin/ksysguardd"
'';
}