nixpkgs-suyu/pkgs/desktops/plasma-5.4/ksysguard.nix

22 lines
544 B
Nix
Raw Normal View History

2015-10-10 18:19:37 +02:00
{ plasmaPackage, extra-cmake-modules, kdoctools, kconfig
, kcoreaddons, kdelibs4support, ki18n, kitemviews, knewstuff
, kiconthemes, libksysguard, makeKDEWrapper
2015-09-27 17:03:00 +02:00
}:
plasmaPackage {
2015-09-27 17:03:00 +02:00
name = "ksysguard";
nativeBuildInputs = [
extra-cmake-modules
kdoctools
makeKDEWrapper
2015-09-27 17:03:00 +02:00
];
buildInputs = [
2015-10-10 18:50:36 +02:00
kconfig kcoreaddons kitemviews knewstuff kiconthemes libksysguard
2015-09-27 17:03:00 +02:00
];
2015-10-10 18:50:36 +02:00
propagatedBuildInputs = [ kdelibs4support ki18n ];
2015-09-27 17:03:00 +02:00
postInstall = ''
wrapKDEProgram "$out/bin/ksysguardd"
wrapKDEProgram "$out/bin/ksysguard"
'';
}