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

10 lines
363 B
Nix
Raw Normal View History

{ kdeFramework, lib, copyPathsToStore, extra-cmake-modules, kcoreaddons, polkit-qt, qttools }:
2016-04-21 08:32:21 -07:00
kdeFramework {
name = "kauth";
2016-04-28 08:48:55 -07:00
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
nativeBuildInputs = [ extra-cmake-modules qttools ];
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);
}