about summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kauth/default.nix
blob: bedddda3ba4d20156eca5396e4b0c8832622fc5d (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{
  mkDerivation, propagate,
  extra-cmake-modules, kcoreaddons, polkit-qt, qttools
}:

mkDerivation {
  pname = "kauth";
  nativeBuildInputs = [ extra-cmake-modules ];
  buildInputs = [ 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";
}