mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-16 23:03:40 +01:00
8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
34 lines
514 B
Nix
34 lines
514 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kdelibs4support
|
|
, ki18n
|
|
, kitemviews
|
|
, knewstuff
|
|
, kiconthemes
|
|
, libksysguard
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "ksysguard";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kconfig
|
|
kcoreaddons
|
|
kdelibs4support
|
|
ki18n
|
|
kitemviews
|
|
knewstuff
|
|
kiconthemes
|
|
libksysguard
|
|
];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/ksysguardd"
|
|
wrapKDEProgram "$out/bin/ksysguard"
|
|
'';
|
|
}
|