19 lines
531 B
Nix
19 lines
531 B
Nix
|
{ kdeFramework, lib, extra-cmake-modules, kconfig, kcoreaddons
|
||
|
, kcrash, kdbusaddons, kdoctools, ki18n, kwindowsystem
|
||
|
}:
|
||
|
|
||
|
kdeFramework {
|
||
|
name = "kservice";
|
||
|
propagatedNativeBuildInputs = [ extra-cmake-modules ];
|
||
|
nativeBuildInputs = [ kdoctools ];
|
||
|
buildInputs = [ kcrash kdbusaddons ];
|
||
|
propagatedBuildInputs = [ kconfig kcoreaddons ki18n kwindowsystem ];
|
||
|
patches = [
|
||
|
./0001-qdiriterator-follow-symlinks.patch
|
||
|
./0002-no-canonicalize-path.patch
|
||
|
];
|
||
|
meta = {
|
||
|
maintainers = [ lib.maintainers.ttuegel ];
|
||
|
};
|
||
|
}
|