xmlto: Fix eval with w3m.graphicsSupport.
Having `nixpkgs.config.w3m.graphicsSupport = true;` leads to an infinite recursion, because xmlto needs w3m for _text_ conversion and w3m with graphics support needs imlib2, which in turn needs xmlto. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
parent
6a117fb0b8
commit
0f26e580bb
@ -2743,7 +2743,9 @@ let
|
||||
|
||||
xmlstarlet = callPackage ../tools/text/xml/xmlstarlet { };
|
||||
|
||||
xmlto = callPackage ../tools/typesetting/xmlto { };
|
||||
xmlto = callPackage ../tools/typesetting/xmlto {
|
||||
w3m = w3m.override { graphicsSupport = false; };
|
||||
};
|
||||
|
||||
xmltv = callPackage ../tools/misc/xmltv { };
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user