nixpkgs/pkgs/desktops/plasma-5.5/ksysguard.nix
2015-11-23 06:39:08 -06:00

21 lines
501 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
];
buildInputs = [
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
];
propagatedBuildInputs = [ kdelibs4support ki18n ];
postInstall = ''
wrapQtProgram "$out/bin/ksysguardd"
'';
}