mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-15 21:57:02 +03:00
22 lines
540 B
Nix
22 lines
540 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"
|
|
wrapQtProgram "$out/bin/ksysguard"
|
|
'';
|
|
}
|