Building Nix from SVN now needs libxml2

svn path=/nixpkgs/trunk/; revision=17273
This commit is contained in:
Michael Raskin 2009-09-19 11:40:36 +00:00
parent dc176f6a2b
commit 50c69a093c
2 changed files with 3 additions and 1 deletions

View File

@ -7,6 +7,7 @@
, bison ? null
, flex ? null
, w3m ? null
, libxml2 ? null
, docbook5_xsl ? null, libxslt ? null
, docbook5 ? null, docbook_xml_dtd_43 ? null
, configureFlags ? []
@ -30,6 +31,7 @@ stdenv.mkDerivation {
++ (if docbook5 != null then [docbook5] else [])
++ (if docbook_xml_dtd_43 != null then [docbook_xml_dtd_43] else [])
++ (if w3m != null then [w3m] else [])
++ (if libxml2 != null then [libxml2] else [])
;
preConfigure =

View File

@ -8225,7 +8225,7 @@ let
flex = flex2533;
aterm = aterm242fixes;
db4 = db45;
inherit docbook5_xsl libxslt docbook5 docbook_xml_dtd_43 w3m;
inherit docbook5_xsl libxslt docbook5 docbook_xml_dtd_43 w3m libxml2;
};
disnix = import ../tools/package-management/disnix {