mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 21:50:55 +00:00
10 lines
314 B
Nix
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);
|
|
}
|