1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-18 03:30:45 +00:00
nixpkgs/pkgs/kde/frameworks/kservice/default.nix
K900 3f2aac327f kdePackages.kservice: handle sycoca disappearing better
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.
2024-04-09 08:29:36 +03:00

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";
}