nixpkgs/pkgs/development/libraries/libxml2/default.nix
Eelco Dolstra cb4a883683 * Update libxml2 to 2.7.7. This is necessary because of the zlib
update - xsltproc segfaults otherwise.  (From the release notes:
  "libxml violates the zlib interface and crashes".)

svn path=/nixpkgs/branches/x-updates/; revision=22655
2010-07-19 08:17:42 +00:00

29 lines
699 B
Nix

{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true }:
assert pythonSupport -> python != null;
stdenv.mkDerivation {
name = "libxml2-2.7.7";
src = fetchurl {
url = ftp://xmlsoft.org/libxml2/libxml2-sources-2.7.7.tar.gz;
sha256 = "03kkknm7xl77qfdig8mzalsi8ljsyblzin18gy3h8zranffrpyzs";
};
configureFlags = ''
${if pythonSupport then "--with-python=${python}" else ""}
'';
propagatedBuildInputs = [zlib];
setupHook = ./setup-hook.sh;
passthru = {inherit pythonSupport;};
meta = {
homepage = http://xmlsoft.org/;
description = "A XML parsing library for C";
license = "bsd";
};
}