13 lines
349 B
Nix
13 lines
349 B
Nix
{ kdeFramework, lib, copyPathsToStore
|
|
, extra-cmake-modules
|
|
, kcoreaddons
|
|
, polkit-qt
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kauth";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules ];
|
|
propagatedBuildInputs = [ kcoreaddons polkit-qt ];
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
}
|