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