forked from mirrors/nixpkgs
d5bec1a145
Instead of one package `extra-cmake-modules`, there is now `ecm` and `ecmNoHooks`. The latter is used when one does not want to incur a Qt 5 dependency; it is also available as a top-level package `extra-cmake-modules`.
14 lines
457 B
Nix
14 lines
457 B
Nix
{
|
|
kdeFramework, lib, copyPathsToStore, ecm,
|
|
kconfig, kcoreaddons, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kservice";
|
|
meta = { maintainers = [ lib.maintainers.ttuegel ]; };
|
|
propagatedNativeBuildInputs = [ ecm ];
|
|
nativeBuildInputs = [ kdoctools ];
|
|
propagatedBuildInputs = [ kconfig kcoreaddons kcrash kdbusaddons ki18n kwindowsystem ];
|
|
patches = copyPathsToStore (lib.readPathsFromFile ./. ./series);
|
|
}
|