8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
40 lines
524 B
Nix
40 lines
524 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, kdoctools
|
|
, kitemviews
|
|
, kcmutils
|
|
, ki18n
|
|
, kio
|
|
, kservice
|
|
, kiconthemes
|
|
, kwindowsystem
|
|
, kxmlgui
|
|
, kdbusaddons
|
|
, kconfig
|
|
, khtml
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "systemsettings";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
kdoctools
|
|
];
|
|
buildInputs = [
|
|
kitemviews
|
|
kcmutils
|
|
ki18n
|
|
kio
|
|
kservice
|
|
kiconthemes
|
|
kwindowsystem
|
|
kxmlgui
|
|
kdbusaddons
|
|
kconfig
|
|
khtml
|
|
];
|
|
postInstall = ''
|
|
wrapKDEProgram "$out/bin/systemsettings5"
|
|
'';
|
|
}
|