nixpkgs-suyu/pkgs/desktops/kde-5/plasma-5.7/ksysguard.nix
2016-07-12 17:59:42 +02:00

20 lines
484 B
Nix

{ 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"
'';
}