Added version 2.6.5 of libxml2

svn path=/nixpkgs/trunk/; revision=750
This commit is contained in:
Martin Bravenboer 2004-02-04 16:36:22 +00:00
parent 9a4afa3f94
commit 103d1b2c83
2 changed files with 19 additions and 0 deletions

View file

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

View file

@ -310,6 +310,10 @@
inherit fetchurl stdenv libxml2;
};
libxml2_265 = (import ../development/libraries/libxml2/libxml2-2.6.5.nix) {
inherit fetchurl stdenv zlib;
};
gettext = (import ../development/libraries/gettext) {
inherit fetchurl stdenv;
};