nixpkgs/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix
2016-03-01 10:36:00 -06:00

16 lines
337 B
Nix

{ kdeFramework, lib
, extra-cmake-modules
, kcoreaddons
, polkit-qt
}:
kdeFramework {
name = "kauth";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ polkit-qt ];
propagatedBuildInputs = [ kcoreaddons ];
patches = [ ./kauth-policy-install.patch ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}