mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-18 03:30:45 +00:00
3f2aac327f
This is not a complete fix, the whole thing is still full of races, but at least this gets it to explode a lot less often.
14 lines
309 B
Nix
14 lines
309 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";
|
|
}
|