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:
aszlig
2014-11-04 04:48:27 +01:00
parent 6a117fb0b8
commit 0f26e580bb

View File

@@ -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 { };