nixpkgs/pkgs/desktops/kde-5/frameworks-5.19/kauth/default.nix

17 lines
337 B
Nix
Raw Normal View History

2016-02-14 17:34:58 +01:00
{ 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 ];
};
}