openssl: revert a workaround that's no longer needed

Thanks to python3Minimal.  This reverts part of c2038483f #79738.
This commit is contained in:
Vladimír Čunát 2020-02-14 13:22:44 +01:00
parent f6519103bf
commit 5a8000dc05
No known key found for this signature in database
GPG key ID: E747DF1F9575A3AA

View file

@ -36,9 +36,7 @@ let
outputs = [ "bin" "dev" "out" "man" ] ++ optional withDocs "doc";
setOutputFlags = false;
separateDebugInfo = !(stdenv.hostPlatform.useLLVM or false)
&& stdenv.hostPlatform == stdenv.buildPlatform # unable to fix infinite recursion on stdenv.cc
&& stdenv.cc.isGNU;
separateDebugInfo = !(stdenv.hostPlatform.useLLVM or false) && stdenv.cc.isGNU;
nativeBuildInputs = [ perl ];
buildInputs = stdenv.lib.optional withCryptodev cryptodev;