2010-07-08 21:22:50 +02:00
|
|
|
{stdenv, fetchurl, zlib, python ? null, pythonSupport ? true }:
|
2006-10-12 17:43:01 +02:00
|
|
|
|
|
|
|
assert pythonSupport -> python != null;
|
|
|
|
|
2009-04-23 14:35:36 +02:00
|
|
|
stdenv.mkDerivation {
|
2012-03-21 11:47:00 +01:00
|
|
|
name = "libxml2-2.7.8";
|
2006-10-12 17:43:01 +02:00
|
|
|
|
|
|
|
src = fetchurl {
|
2012-03-21 11:47:00 +01:00
|
|
|
url = ftp://xmlsoft.org/libxml2/libxml2-sources-2.7.8.tar.gz;
|
|
|
|
sha256 = "6a33c3a2d18b902cd049e0faa25dd39f9b554a5b09a3bb56ee07dd7938b11c54";
|
2006-10-12 17:43:01 +02:00
|
|
|
};
|
|
|
|
|
2009-04-23 14:35:36 +02:00
|
|
|
configureFlags = ''
|
|
|
|
${if pythonSupport then "--with-python=${python}" else ""}
|
2009-02-03 17:14:23 +01:00
|
|
|
'';
|
2009-04-23 14:35:36 +02:00
|
|
|
|
|
|
|
propagatedBuildInputs = [zlib];
|
2009-02-03 17:14:23 +01:00
|
|
|
|
2009-04-23 14:35:36 +02:00
|
|
|
setupHook = ./setup-hook.sh;
|
2009-02-03 17:14:23 +01:00
|
|
|
|
|
|
|
passthru = {inherit pythonSupport;};
|
2006-10-12 17:43:01 +02:00
|
|
|
|
2009-02-03 17:14:23 +01:00
|
|
|
meta = {
|
|
|
|
homepage = http://xmlsoft.org/;
|
|
|
|
description = "A XML parsing library for C";
|
2009-10-30 13:42:48 +01:00
|
|
|
license = "bsd";
|
2009-02-03 17:14:23 +01:00
|
|
|
};
|
2009-04-23 14:35:36 +02:00
|
|
|
}
|