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