openssl: Switch deafult for MinGW

Working around broken build for now.
This commit is contained in:
John Ericson 2019-11-11 13:56:14 -05:00
parent e00237e790
commit dec8d2c5da

View file

@ -12954,7 +12954,10 @@ in
wolfssl = callPackage ../development/libraries/wolfssl { };
openssl = openssl_1_1;
openssl =
if stdenv.hostPlatform.isMinGW # Work around broken cross build
then openssl_1_0_2
else openssl_1_1;
inherit (callPackages ../development/libraries/openssl { })
openssl_1_0_2