mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-10 15:04:44 +00:00
f306e67e15
It is analogous to 98d8e1a160
.
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 ];
|
|
};
|
|
}
|