summary refs log tree commit diff
path: root/pkgs/development/libraries/kde-frameworks/kauth/default.nix
blob: 7561575ae84e0629c640760336650f79e289a3d9 (plain) (blame)
1
2
3
4
5
6
7
8
9
{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kcoreaddons, polkit-qt, qttools }:

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