1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 21:50:55 +00:00
nixpkgs/pkgs/development/libraries/kde-frameworks/kauth/default.nix
2016-07-30 09:36:52 -05:00

10 lines
314 B
Nix

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