about summary refs log tree commit diff
path: root/pkgs/desktops/kde-5/frameworks-5.21/kauth/default.nix
blob: 4bdba88bc3bbd408b881fb95ee10a8d28ecd7765 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules
, kcoreaddons
, polkit-qt
}:

kdeFramework {
  name = "kauth";
  meta = { maintainers = [ lib.maintainers.ttuegel ]; };
  nativeBuildInputs = [ extra-cmake-modules ];
  propagatedBuildInputs = [ kcoreaddons polkit-qt ];
  patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}