libxml2: Don't use stdenv.cross
This commit is contained in:
parent
6916f24e84
commit
8ca8293dbc
@ -1,7 +1,9 @@
|
|||||||
{ stdenv, lib, fetchurl, fetchpatch
|
{ stdenv, lib, fetchurl, fetchpatch
|
||||||
, zlib, xz, python2, findXMLCatalogs, libiconv
|
, zlib, xz, python2, findXMLCatalogs, libiconv
|
||||||
, pythonSupport ? (! stdenv ? cross)
|
, buildPlatform, hostPlatform
|
||||||
, icuSupport ? false, icu ? null }:
|
, pythonSupport ? buildPlatform == hostPlatform
|
||||||
|
, icuSupport ? false, icu ? null
|
||||||
|
}:
|
||||||
|
|
||||||
let
|
let
|
||||||
python = python2;
|
python = python2;
|
||||||
@ -45,7 +47,7 @@ in stdenv.mkDerivation rec {
|
|||||||
|
|
||||||
doCheck = !stdenv.isDarwin;
|
doCheck = !stdenv.isDarwin;
|
||||||
|
|
||||||
crossAttrs = lib.optionalAttrs (stdenv.cross.libc == "msvcrt") {
|
crossAttrs = lib.optionalAttrs (hostPlatform.libc == "msvcrt") {
|
||||||
# creating the DLL is broken ATM
|
# creating the DLL is broken ATM
|
||||||
dontDisableStatic = true;
|
dontDisableStatic = true;
|
||||||
configureFlags = configureFlags ++ [ "--disable-shared" ];
|
configureFlags = configureFlags ++ [ "--disable-shared" ];
|
||||||
|
Loading…
Reference in New Issue
Block a user