mirror of
https://github.com/SebastianWendel/nixpkgs.git
synced 2024-11-05 17:56:46 +01:00
16 lines
455 B
Nix
16 lines
455 B
Nix
{
|
|
mkDerivation, lib, extra-cmake-modules,
|
|
kcoreaddons, kconfig, kcrash, kdbusaddons, ki18n, kiconthemes, knotifications,
|
|
kwidgetsaddons, kwindowsystem, polkit-qt, qtbase
|
|
}:
|
|
|
|
mkDerivation {
|
|
pname = "polkit-kde-agent";
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [
|
|
kdbusaddons kwidgetsaddons kcoreaddons kcrash kconfig ki18n kiconthemes
|
|
knotifications kwindowsystem polkit-qt
|
|
];
|
|
outputs = [ "out" "dev" ];
|
|
}
|