about summary refs log tree commit diff
path: root/pkgs/development/libraries/libxml2
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2006-05-01 17:57:42 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2006-05-01 17:57:42 +0000
commit12f0f1ad20c3b559efb848d5a700660b18df977e (patch)
treeffeeb24cf4a59d6cadbbbae451ec1af241cc0ff2 /pkgs/development/libraries/libxml2
parent4acfb1a684671eaadafd91355514520a48a0b382 (diff)
* Updated a few packages.
svn path=/nixpkgs/trunk/; revision=5246
Diffstat (limited to 'pkgs/development/libraries/libxml2')
-rw-r--r--pkgs/development/libraries/libxml2/default.nix6
1 files changed, 3 insertions, 3 deletions
diff --git a/pkgs/development/libraries/libxml2/default.nix b/pkgs/development/libraries/libxml2/default.nix
index a2232b041590e..e72ecd52cdb22 100644
--- a/pkgs/development/libraries/libxml2/default.nix
+++ b/pkgs/development/libraries/libxml2/default.nix
@@ -4,12 +4,12 @@ assert zlib != null;
 assert pythonSupport -> python != null;
 
 stdenv.mkDerivation {
-  name = "libxml2-2.6.22";
+  name = "libxml2-2.6.23";
   builder = ./builder.sh;
 
   src = fetchurl {
-    url = http://nix.cs.uu.nl/dist/tarballs/libxml2-2.6.22.tar.gz;
-    md5 = "1db8d06b4f49a665a8f47dc6d94450e6";
+    url = ftp://xmlsoft.org/libxml2/libxml2-2.6.23.tar.gz;
+    md5 = "0f37385e3ad73cc94db43d6873f4fc3b";
   };
 
   python = if pythonSupport then python else null;