move calibre-web patch to patches directory

still requires overlay because there is no package option
This commit is contained in:
Noah Masur 2022-10-18 03:19:23 +00:00
parent d97e3fda07
commit ef6c920c48
2 changed files with 2 additions and 1 deletions

View File

@ -25,7 +25,8 @@
nixpkgs.overlays = [ nixpkgs.overlays = [
(final: prev: { (final: prev: {
calibre-web = prev.calibre-web.overrideAttrs (old: { calibre-web = prev.calibre-web.overrideAttrs (old: {
patches = (old.patches or [ ]) ++ [ ./calibre-web-cloudflare.patch ]; patches = (old.patches or [ ])
++ [ ../../patches/calibre-web-cloudflare.patch ];
}); });
}) })
]; ];