13 lines
311 B
Nix
13 lines
311 B
Nix
{ mkKdeDerivation }:
|
|
mkKdeDerivation {
|
|
pname = "kservice";
|
|
|
|
# FIXME(later): upstream
|
|
patches = [
|
|
# follow symlinks when generating sycoca
|
|
./qdiriterator-follow-symlinks.patch
|
|
# explode less when sycoca is deleted
|
|
./handle-sycoca-deletion.patch
|
|
];
|
|
meta.mainProgram = "kbuildsycoca6";
|
|
}
|