summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks-5.18/kauth/default.nix
blob: 2b000ff3c04174f03baf535cb159cca315bc2d71 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ 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 ];
  };
}