libxml2: fix on mingw, without DLLs ATM
After closure-size merge we need to disable python support, as python upstream doesn't support cross-building linux -> mingw.
This commit is contained in:
parent
91f2b9ed66
commit
94eba25103
|
@ -1,4 +1,5 @@
|
||||||
{ stdenv, fetchurl, zlib, xz, python, findXMLCatalogs }:
|
{ stdenv, lib, fetchurl, zlib, xz, python, findXMLCatalogs, libiconv
|
||||||
|
, supportPython ? (! stdenv ? cross) }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "libxml2-${version}";
|
name = "libxml2-${version}";
|
||||||
|
@ -9,23 +10,35 @@ stdenv.mkDerivation rec {
|
||||||
sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
|
sha256 = "0bd17g6znn2r98gzpjppsqjg33iraky4px923j3k8kdl8qgy7sad";
|
||||||
};
|
};
|
||||||
|
|
||||||
outputs = [ "dev" "out" "bin" "doc" "py" ];
|
outputs = [ "dev" "out" "bin" "doc" ]
|
||||||
propagatedBuildOutputs = "out bin py";
|
++ lib.optional supportPython "py";
|
||||||
|
propagatedBuildOutputs = "out bin" + lib.optionalString supportPython " py";
|
||||||
|
|
||||||
buildInputs = [ python ]
|
buildInputs = lib.optional supportPython python
|
||||||
# Libxml2 has an optional dependency on liblzma. However, on impure
|
# Libxml2 has an optional dependency on liblzma. However, on impure
|
||||||
# platforms, it may end up using that from /usr/lib, and thus lack a
|
# platforms, it may end up using that from /usr/lib, and thus lack a
|
||||||
# RUNPATH for that, leading to undefined references for its users.
|
# RUNPATH for that, leading to undefined references for its users.
|
||||||
++ stdenv.lib.optional stdenv.isFreeBSD xz;
|
++ lib.optional stdenv.isFreeBSD xz;
|
||||||
|
|
||||||
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
||||||
|
|
||||||
configureFlags = "--with-python=${python}";
|
configureFlags = lib.optional supportPython "--with-python=${python}";
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") {
|
||||||
installFlags = ''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
|
# creating the DLL is broken ATM
|
||||||
|
dontDisableStatic = true;
|
||||||
|
configureFlags = configureFlags ++ [ "--disable-shared" ];
|
||||||
|
|
||||||
|
# libiconv is a header dependency - propagating is enough
|
||||||
|
propagatedBuildInputs = [ findXMLCatalogs libiconv ];
|
||||||
|
};
|
||||||
|
|
||||||
|
preInstall = lib.optionalString supportPython
|
||||||
|
''substituteInPlace python/libxml2mod.la --replace "${python}" "$py"'';
|
||||||
|
installFlags = lib.optionalString supportPython
|
||||||
|
''pythondir="$(py)/lib/${python.libPrefix}/site-packages"'';
|
||||||
|
|
||||||
postFixup = ''
|
postFixup = ''
|
||||||
moveToOutput bin/xml2-config "$dev"
|
moveToOutput bin/xml2-config "$dev"
|
||||||
|
@ -33,13 +46,13 @@ stdenv.mkDerivation rec {
|
||||||
moveToOutput share/man/man1 "$bin"
|
moveToOutput share/man/man1 "$bin"
|
||||||
'';
|
'';
|
||||||
|
|
||||||
passthru = { inherit version; pythonSupport = true; };
|
passthru = { inherit version; pythonSupport = supportPython; };
|
||||||
|
|
||||||
meta = {
|
meta = {
|
||||||
homepage = http://xmlsoft.org/;
|
homepage = http://xmlsoft.org/;
|
||||||
description = "An XML parsing library for C";
|
description = "An XML parsing library for C";
|
||||||
license = "bsd";
|
license = "bsd";
|
||||||
platforms = stdenv.lib.platforms.unix;
|
platforms = lib.platforms.unix;
|
||||||
maintainers = [ stdenv.lib.maintainers.eelco ];
|
maintainers = [ lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue