Skip to content

Commit 04bbac6

Browse files
fix: patch calibre-web temp
1 parent 9e5c2e3 commit 04bbac6

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

configurations/nixos/lab/services/calibre.nix

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,14 @@ in
2424

2525
calibre-web = {
2626
enable = true;
27+
# workaround for wand deps
28+
# https://github.com/NixOS/nixpkgs/issues/503251
29+
package = pkgs.calibre-web.overrideAttrs (prev: {
30+
pythonRelaxDeps = prev.pythonRelaxDeps ++ [
31+
"wand"
32+
];
33+
});
34+
2735
listen = {
2836
inherit (web) port;
2937

0 commit comments

Comments
 (0)