nixpkgs/pkgs/development/libraries/kde-frameworks/kauth/default.nix

14 lines
349 B
Nix
Raw Normal View History

2016-04-21 08:32:21 -07:00
{ kdeFramework, lib, copyPathsToStore
, extra-cmake-modules
, kcoreaddons
, polkit-qt
}:
kdeFramework {
name = "kauth";
2016-04-28 08:48:55 -07:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
2016-04-21 08:32:21 -07:00
nativeBuildInputs = [ extra-cmake-modules ];
2016-04-28 08:48:55 -07:00
propagatedBuildInputs = [ kcoreaddons polkit-qt ];
2016-04-21 08:32:21 -07:00
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
}