zlib: skip configure in windows

configure spits out an error when running on windows
This commit is contained in:
Matthew Bauer 2018-10-17 12:43:07 -05:00
parent a5de0ca963
commit 845a364564

View File

@ -82,4 +82,6 @@ stdenv.mkDerivation (rec {
preConfigure = ''
export CHOST=${stdenv.hostPlatform.config}
'';
} // stdenv.lib.optionalAttrs (stdenv.hostPlatform.libc == "msvcrt") {
configurePhase = ":";
})