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

22 lines
540 B
Nix
Raw Normal View History

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