git-subtree-dir: third_party/nixpkgs git-subtree-split: 76612b17c0ce71689921ca12d9ffdc9c23ce40b2
81 lines
2 KiB
Nix
81 lines
2 KiB
Nix
{ stdenv
|
|
, callPackage
|
|
, fetchFromGitHub
|
|
, fetchurl
|
|
, lib
|
|
, perl
|
|
, sgx-sdk
|
|
, which
|
|
, debug ? false
|
|
}:
|
|
let
|
|
sgxVersion = sgx-sdk.versionTag;
|
|
opensslVersion = "3.0.13";
|
|
in
|
|
stdenv.mkDerivation {
|
|
pname = "sgx-ssl" + lib.optionalString debug "-debug";
|
|
version = "${sgxVersion}_${opensslVersion}";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "intel";
|
|
repo = "intel-sgx-ssl";
|
|
rev = "3.0_Rev2";
|
|
hash = "sha256-dmLyaG6v+skjSa0KxLAfIfSBOxp9grrI7ds6WdGPe0I=";
|
|
};
|
|
|
|
postUnpack =
|
|
let
|
|
opensslSourceArchive = fetchurl {
|
|
url = "https://www.openssl.org/source/openssl-${opensslVersion}.tar.gz";
|
|
hash = "sha256-iFJXU/edO+wn0vp8ZqoLkrOqlJja/ZPXz6SzeAza4xM=";
|
|
};
|
|
in
|
|
''
|
|
ln -s ${opensslSourceArchive} $sourceRoot/openssl_source/openssl-${opensslVersion}.tar.gz
|
|
'';
|
|
|
|
postPatch = ''
|
|
patchShebangs Linux/build_openssl.sh
|
|
|
|
# Skip the tests. Build and run separately (see below).
|
|
substituteInPlace Linux/sgx/Makefile \
|
|
--replace-fail '$(MAKE) -C $(TEST_DIR) all' \
|
|
'bash -c "true"'
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
perl
|
|
sgx-sdk
|
|
which
|
|
];
|
|
|
|
makeFlags = [
|
|
"-C Linux"
|
|
] ++ lib.optionals debug [
|
|
"DEBUG=1"
|
|
];
|
|
|
|
installFlags = [
|
|
"DESTDIR=$(out)"
|
|
];
|
|
|
|
# These tests build on any x86_64-linux but BOTH SIM and HW will only _run_ on
|
|
# real Intel hardware. Split these out so OfBorg doesn't choke on this pkg.
|
|
#
|
|
# ```
|
|
# nix run .#sgx-ssl.tests.HW
|
|
# nix run .#sgx-ssl.tests.SIM
|
|
# ```
|
|
passthru.tests = {
|
|
HW = callPackage ./tests.nix { sgxMode = "HW"; inherit opensslVersion; };
|
|
SIM = callPackage ./tests.nix { sgxMode = "SIM"; inherit opensslVersion; };
|
|
};
|
|
|
|
meta = {
|
|
description = "Cryptographic library for Intel SGX enclave applications based on OpenSSL";
|
|
homepage = "https://github.com/intel/intel-sgx-ssl";
|
|
maintainers = with lib.maintainers; [ phlip9 trundle veehaitch ];
|
|
platforms = [ "x86_64-linux" ];
|
|
license = with lib.licenses; [ bsd3 openssl ];
|
|
};
|
|
}
|