From 50c69a093ca1c72cc7265eb8bc87c1bffbd669ae Mon Sep 17 00:00:00 2001 From: Michael Raskin <7c6f434c@mail.ru> Date: Sat, 19 Sep 2009 11:40:36 +0000 Subject: Building Nix from SVN now needs libxml2 svn path=/nixpkgs/trunk/; revision=17273 --- pkgs/tools/package-management/nix/custom.nix | 2 ++ 1 file changed, 2 insertions(+) (limited to 'pkgs/tools') diff --git a/pkgs/tools/package-management/nix/custom.nix b/pkgs/tools/package-management/nix/custom.nix index dea1c93b01a90..f87044d704562 100644 --- a/pkgs/tools/package-management/nix/custom.nix +++ b/pkgs/tools/package-management/nix/custom.nix @@ -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 = -- cgit 1.4.1