summary refs log tree commit diff
path: root/pkgs/development
diff options
context:
space:
mode:
authorMartin Bravenboer <martin.bravenboer@logicblox.com>2004-02-04 16:36:22 +0000
committerMartin Bravenboer <martin.bravenboer@logicblox.com>2004-02-04 16:36:22 +0000
commit103d1b2c833785804747a30b44fb64972933a007 (patch)
tree474f1e9807ab152013c579a0ddc32773b4404c6c /pkgs/development
parent9a4afa3f94dda5cdff95d225597ad25afe802e85 (diff)
Added version 2.6.5 of libxml2
svn path=/nixpkgs/trunk/; revision=750
Diffstat (limited to 'pkgs/development')
-rw-r--r--pkgs/development/libraries/libxml2/libxml2-2.6.5.nix15
1 files changed, 15 insertions, 0 deletions
diff --git a/pkgs/development/libraries/libxml2/libxml2-2.6.5.nix b/pkgs/development/libraries/libxml2/libxml2-2.6.5.nix
new file mode 100644
index 0000000000000..a3a4e0df36d07
--- /dev/null
+++ b/pkgs/development/libraries/libxml2/libxml2-2.6.5.nix
@@ -0,0 +1,15 @@
+{stdenv, fetchurl, zlib}:
+
+assert !isNull zlib;
+
+derivation {
+  name = "libxml2-2.6.5";
+  system = stdenv.system;
+  builder = ./builder.sh;
+  src = fetchurl {
+    url = http://rpmfind.net/pub/libxml/libxml2-2.6.5.tar.gz;
+    md5 = "0ac5dd9902c9bf20f7bc50de1034d49f";
+  };
+  stdenv = stdenv;
+  zlib = zlib;
+}