mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
31 lines
479 B
Nix
31 lines
479 B
Nix
{ mkDerivation
|
|
, extra-cmake-modules
|
|
, kcoreaddons
|
|
, kconfig
|
|
, kcrash
|
|
, kdbusaddons
|
|
, ki18n
|
|
, kiconthemes
|
|
, knotifications
|
|
, kwidgetsaddons
|
|
, kwindowsystem
|
|
, polkit-qt
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "polkit-kde-agent";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
kdbusaddons
|
|
kwidgetsaddons
|
|
kcoreaddons
|
|
kcrash
|
|
kconfig
|
|
ki18n
|
|
kiconthemes
|
|
knotifications
|
|
kwindowsystem
|
|
polkit-qt
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|