mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-01 15:11:25 +00:00
Added version 2.6.5 of libxml2
svn path=/nixpkgs/trunk/; revision=750
This commit is contained in:
parent
9a4afa3f94
commit
103d1b2c83
15
pkgs/development/libraries/libxml2/libxml2-2.6.5.nix
Normal file
15
pkgs/development/libraries/libxml2/libxml2-2.6.5.nix
Normal 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;
|
||||
}
|
@ -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…
Reference in New Issue
Block a user