14 lines
414 B
Nix
14 lines
414 B
Nix
{
|
|
kdeFramework, fetchurl, lib, copyPathsToStore,
|
|
extra-cmake-modules, kdoctools,
|
|
karchive, kconfig, kcoreaddons, ki18n
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kpackage";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
propagatedBuildInputs = [ karchive kconfig kcoreaddons ki18n ];
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
}
|