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

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