26 lines
553 B
Nix
26 lines
553 B
Nix
{ kdeFramework, lib
|
|
, extra-cmake-modules
|
|
, kconfig
|
|
, kcoreaddons
|
|
, kcrash
|
|
, kdbusaddons
|
|
, kdoctools
|
|
, ki18n
|
|
, kwindowsystem
|
|
}:
|
|
|
|
kdeFramework {
|
|
name = "kservice";
|
|
setupHook = ./setup-hook.sh;
|
|
nativeBuildInputs = [ extra-cmake-modules kdoctools ];
|
|
buildInputs = [ kcoreaddons kcrash kdbusaddons ki18n kwindowsystem ];
|
|
propagatedBuildInputs = [ kconfig ];
|
|
patches = [
|
|
./kservice-kbuildsycoca-follow-symlinks.patch
|
|
./kservice-kbuildsycoca-no-canonicalize-path.patch
|
|
];
|
|
meta = {
|
|
maintainers = [ lib.maintainers.ttuegel ];
|
|
};
|
|
}
|