We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9e5c2e3 commit 04bbac6Copy full SHA for 04bbac6
configurations/nixos/lab/services/calibre.nix
@@ -24,6 +24,14 @@ in
24
25
calibre-web = {
26
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
+
35
listen = {
36
inherit (web) port;
37
0 commit comments