mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
32 lines
470 B
Nix
32 lines
470 B
Nix
|
{ plasmaPackage
|
||
|
, extra-cmake-modules
|
||
|
, ki18n
|
||
|
, kwindowsystem
|
||
|
, kdbusaddons
|
||
|
, kwidgetsaddons
|
||
|
, kcoreaddons
|
||
|
, kcrash
|
||
|
, kconfig
|
||
|
, kiconthemes
|
||
|
, knotifications
|
||
|
, polkit-qt
|
||
|
}:
|
||
|
|
||
|
plasmaPackage {
|
||
|
name = "polkit-kde-agent";
|
||
|
nativeBuildInputs = [
|
||
|
extra-cmake-modules
|
||
|
];
|
||
|
buildInputs = [
|
||
|
kdbusaddons
|
||
|
kwidgetsaddons
|
||
|
kcoreaddons
|
||
|
kcrash
|
||
|
kconfig
|
||
|
kiconthemes
|
||
|
knotifications
|
||
|
polkit-qt
|
||
|
];
|
||
|
propagatedBuildInputs = [ ki18n kwindowsystem ];
|
||
|
}
|