mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-02 19:14:14 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
82 lines
2.0 KiB
Nix
82 lines
2.0 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 ];
|
|
};
|
|
}
|