dotfiles/overlays/calibre-web.nix

8 lines
212 B
Nix
Raw Normal View History

2023-02-21 01:00:54 +00:00
# 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 ];
});
}