32 lines
468 B
Nix
32 lines
468 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 = [
|
|
kdbusaddons
|
|
kwidgetsaddons
|
|
kcoreaddons
|
|
kcrash
|
|
kconfig
|
|
kiconthemes
|
|
knotifications
|
|
polkitQt
|
|
];
|
|
propagatedBuildInputs = [ ki18n kwindowsystem ];
|
|
}
|