mirror of
https://github.com/nmasur/dotfiles
synced 2024-11-23 05:45:38 +00:00
8 lines
212 B
Nix
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 ];
|
||
|
});
|
||
|
}
|