8e9fca18e3
Provides a globally unique name (plasmaPackage) instead of using attribute paths as namespaces and locally overloading the mkDerivation name.
33 lines
445 B
Nix
33 lines
445 B
Nix
{ plasmaPackage
|
|
, extra-cmake-modules
|
|
, ki18n
|
|
, kwindowsystem
|
|
, kdbusaddons
|
|
, kwidgetsaddons
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kconfig
|
|
, kiconthemes
|
|
, knotifications
|
|
, polkitQt
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "polkit-kde-agent";
|
|
nativeBuildInputs = [
|
|
extra-cmake-modules
|
|
];
|
|
buildInputs = [
|
|
ki18n
|
|
kwindowsystem
|
|
kdbusaddons
|
|
kwidgetsaddons
|
|
kcoreaddons
|
|
kcrash
|
|
kconfig
|
|
kiconthemes
|
|
knotifications
|
|
polkitQt
|
|
];
|
|
}
|