mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-14 15:36:47 +03:00
15 lines
382 B
Nix
15 lines
382 B
Nix
{
|
|
plasmaPackage, ecm,
|
|
kcoreaddons, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, knotifications,
|
|
kwidgetsaddons, kwindowsystem, polkit-qt
|
|
}:
|
|
|
|
plasmaPackage {
|
|
name = "polkit-kde-agent";
|
|
nativeBuildInputs = [ ecm ];
|
|
propagatedBuildInputs = [
|
|
kdbusaddons kwidgetsaddons kcoreaddons kcrash kconfig ki18n kiconthemes
|
|
knotifications kwindowsystem polkit-qt
|
|
];
|
|
}
|