depot/third_party/nixpkgs/pkgs/desktops/plasma-5/polkit-kde-agent.nix
Default email c594a97518 Project import generated by Copybara.
GitOrigin-RevId: 301aada7a64812853f2e2634a530ef5d34505048
2022-10-21 20:38:19 +02:00

33 lines
494 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" ];
}