17 lines
335 B
Nix
Raw Normal View History

{ kdeFramework, lib
2015-09-27 10:02:10 -05:00
, extra-cmake-modules
, kcoreaddons
, polkitQt
}:
kdeFramework {
2015-09-27 10:02:10 -05:00
name = "kauth";
nativeBuildInputs = [ extra-cmake-modules ];
buildInputs = [ polkitQt ];
propagatedBuildInputs = [ kcoreaddons ];
patches = [ ./kauth-policy-install.patch ];
meta = {
maintainers = [ lib.maintainers.ttuegel ];
};
}