Added version 2.6.5 of libxml2

svn path=/nixpkgs/trunk/; revision=750
wip/yesman
Martin Bravenboer 21 years ago
parent 9a4afa3f94
commit 103d1b2c83
  1. 15
      pkgs/development/libraries/libxml2/libxml2-2.6.5.nix
  2. 4
      pkgs/system/all-packages-generic.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;
}

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

Loading…
Cancel
Save