sgx-sdk: pin to openssl_1_1

Currently, the sgx-sdk.runTestsHW attribute fails to build due to
linking errors. It looks like OpenSSL versions are mixed up.

And indeed sgx-sdk pulls in OpenSSL 3 while ipp-crypto pulls in
OpenSSL 1.1.

Fix by pinning the OpenSSL version for the SGX SDK to OpenSSL 1.1 as
well.
This commit is contained in:
Julian Stecklina 2022-12-12 16:03:53 +01:00
parent 0f482d4d0d
commit 2c8407089b

View file

@ -16,7 +16,7 @@
, nasm
, ocaml
, ocamlPackages
, openssl
, openssl_1_1
, perl
, python3
, texinfo
@ -84,7 +84,7 @@ stdenv.mkDerivation rec {
buildInputs = [
libtool
openssl
openssl_1_1
];
BINUTILS_DIR = "${binutils}/bin";