mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-27 17:33:09 +00:00
Revert "libxml2: Refactor and fix library propagation"
This reverts commit 287ec76b8f
.
This commit is contained in:
parent
16f87d772f
commit
eae17c3743
@ -1,63 +1,49 @@
|
|||||||
{ stdenv, fetchurl, findXMLCatalogs
|
{ stdenv, fetchurl, zlib, xz, python ? null, pythonSupport ? true, findXMLCatalogs }:
|
||||||
|
|
||||||
# Optional Dependencies
|
assert pythonSupport -> python != null;
|
||||||
, icu ? null, python ? null, readline ? null, zlib ? null, xz ? null
|
|
||||||
}:
|
|
||||||
|
|
||||||
#TODO: share most stuff between python and non-python builds, perhaps via multiple-output
|
#TODO: share most stuff between python and non-python builds, perhaps via multiple-output
|
||||||
|
|
||||||
let
|
let
|
||||||
mkFlag = trueStr: falseStr: cond: name: val:
|
|
||||||
if cond == null then null else
|
|
||||||
"--${if cond != false then trueStr else falseStr}${name}${if val != null && cond != false then "=${val}" else ""}";
|
|
||||||
mkEnable = mkFlag "enable-" "disable-";
|
|
||||||
mkWith = mkFlag "with-" "without-";
|
|
||||||
mkOther = mkFlag "" "" true;
|
|
||||||
|
|
||||||
shouldUsePkg = pkg: if pkg != null && stdenv.lib.any (x: x == stdenv.system) pkg.meta.platforms then pkg else null;
|
|
||||||
|
|
||||||
optIcu = shouldUsePkg icu;
|
|
||||||
optPython = shouldUsePkg python;
|
|
||||||
optReadline = shouldUsePkg readline;
|
|
||||||
optZlib = shouldUsePkg zlib;
|
|
||||||
optXz = shouldUsePkg xz;
|
|
||||||
|
|
||||||
sitePackages = if optPython == null then null else
|
|
||||||
"\${out}/lib/${python.libPrefix}/site-packages";
|
|
||||||
in
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "libxml2-${version}";
|
|
||||||
version = "2.9.2";
|
version = "2.9.2";
|
||||||
|
in
|
||||||
|
|
||||||
|
stdenv.mkDerivation (rec {
|
||||||
|
name = "libxml2-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
url = "http://xmlsoft.org/sources/${name}.tar.gz";
|
||||||
sha256 = "1g6mf03xcabmk5ing1lwqmasr803616gb2xhn7pll10x2l5w6y2i";
|
sha256 = "1g6mf03xcabmk5ing1lwqmasr803616gb2xhn7pll10x2l5w6y2i";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ optIcu optPython optReadline optZlib optXz ];
|
buildInputs = stdenv.lib.optional pythonSupport python
|
||||||
propagatedBuildInputs = [ findXMLCatalogs ];
|
# Libxml2 has an optional dependency on liblzma. However, on impure
|
||||||
|
# platforms, it may end up using that from /usr/lib, and thus lack a
|
||||||
|
# RUNPATH for that, leading to undefined references for its users.
|
||||||
|
++ (stdenv.lib.optional stdenv.isFreeBSD xz);
|
||||||
|
|
||||||
configureFlags = [
|
propagatedBuildInputs = [ zlib findXMLCatalogs ];
|
||||||
(mkWith (optIcu != null) "icu" optIcu)
|
|
||||||
(mkWith (optPython != null) "python" optPython)
|
passthru = { inherit pythonSupport version; };
|
||||||
(mkWith (optPython != null) "python-install-dir" sitePackages)
|
|
||||||
(mkWith (optReadline != null) "readline" optReadline)
|
|
||||||
(mkWith (optZlib != null) "zlib" optZlib)
|
|
||||||
(mkWith (optXz != null) "lzma" optXz)
|
|
||||||
];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = {
|
||||||
homepage = http://xmlsoft.org/;
|
homepage = http://xmlsoft.org/;
|
||||||
description = "An XML parsing library for C";
|
description = "An XML parsing library for C";
|
||||||
license = licenses.mit;
|
license = "bsd";
|
||||||
platforms = platforms.unix;
|
platforms = stdenv.lib.platforms.unix;
|
||||||
maintainers = with maintainers; [ eelco wkennington ];
|
maintainers = [ stdenv.lib.maintainers.eelco ];
|
||||||
};
|
};
|
||||||
|
|
||||||
passthru = {
|
} // stdenv.lib.optionalAttrs pythonSupport {
|
||||||
inherit version;
|
configureFlags = "--with-python=${python}";
|
||||||
pythonSupport = python != null;
|
|
||||||
};
|
# this is a pair of ugly hacks to make python stuff install into the right place
|
||||||
}
|
preInstall = ''substituteInPlace python/libxml2mod.la --replace "${python}" "$out"'';
|
||||||
|
installFlags = ''pythondir="$(out)/lib/${python.libPrefix}/site-packages"'';
|
||||||
|
|
||||||
|
} // stdenv.lib.optionalAttrs (!pythonSupport) {
|
||||||
|
configureFlags = "--with-python=no"; # otherwise build impurity bites us
|
||||||
|
})
|
||||||
|
|
||||||
|
@ -7259,11 +7259,11 @@ let
|
|||||||
libxmi = callPackage ../development/libraries/libxmi { };
|
libxmi = callPackage ../development/libraries/libxmi { };
|
||||||
|
|
||||||
libxml2 = callPackage ../development/libraries/libxml2 {
|
libxml2 = callPackage ../development/libraries/libxml2 {
|
||||||
python = null;
|
pythonSupport = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
libxml2Python = lowPrio (libxml2.override {
|
libxml2Python = lowPrio (libxml2.override {
|
||||||
inherit python;
|
pythonSupport = true;
|
||||||
});
|
});
|
||||||
|
|
||||||
libxmlxx = callPackage ../development/libraries/libxmlxx { };
|
libxmlxx = callPackage ../development/libraries/libxmlxx { };
|
||||||
|
Loading…
Reference in New Issue
Block a user