nixpkgs/pkgs/development/libraries/kde-frameworks/kauth/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

20 lines
527 B
Nix
Raw Normal View History

{
2022-03-24 14:48:17 +00:00
lib, mkDerivation, propagate,
extra-cmake-modules, kcoreaddons, qttools,
enablePolkit ? true, polkit-qt
}:
2016-04-21 15:32:21 +00:00
mkDerivation {
2022-02-23 17:28:27 +00:00
pname = "kauth";
nativeBuildInputs = [ extra-cmake-modules ];
2022-03-24 16:32:12 +00:00
buildInputs = lib.optional enablePolkit polkit-qt ++ [ qttools ];
propagatedBuildInputs = [ kcoreaddons ];
patches = [
./cmake-install-paths.patch
];
# library stores reference to plugin path,
# separating $out from $bin would create a reference cycle
outputs = [ "out" "dev" ];
setupHook = propagate "out";
2016-04-21 15:32:21 +00:00
}