dotfiles/overlays/calibre-web.nix
2023-02-20 20:00:54 -05:00

8 lines
212 B
Nix

# Fix: https://github.com/janeczku/calibre-web/issues/2422
final: prev: {
calibre-web = prev.calibre-web.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ./calibre-web-cloudflare.patch ];
});
}