3
0
Fork 0
forked from mirrors/nixpkgs

ghc-8.4.3: minor fixes for cross-musl, same as used with 8.2.2

Patches are no longer needed, seem to be more or less upstreamed.
This commit is contained in:
Will Dietz 2018-06-25 11:34:57 -05:00
parent 656dc51666
commit 2052323a78

View file

@ -49,7 +49,8 @@ let
'' + stdenv.lib.optionalString enableIntegerSimple ''
INTEGER_LIBRARY = integer-simple
'' + stdenv.lib.optionalString (targetPlatform != hostPlatform) ''
Stage1Only = YES
Stage1Only = ${if targetPlatform.system == hostPlatform.system then "NO" else "YES"}
CrossCompilePrefix = ${targetPrefix}
HADDOCK_DOCS = NO
BUILD_SPHINX_HTML = NO
BUILD_SPHINX_PDF = NO