e7ec2969af
GitOrigin-RevId: 9b19f5e77dd906cb52dade0b7bd280339d2a1f3d
32 lines
541 B
Nix
32 lines
541 B
Nix
{ lib
|
|
, sgx-azure-dcap-client
|
|
, gtest
|
|
, makeWrapper
|
|
}:
|
|
sgx-azure-dcap-client.overrideAttrs (old: {
|
|
nativeBuildInputs = old.nativeBuildInputs ++ [
|
|
makeWrapper
|
|
gtest
|
|
];
|
|
|
|
patches = [
|
|
./tests-missing-includes.patch
|
|
];
|
|
|
|
buildFlags = [
|
|
"tests"
|
|
];
|
|
|
|
installPhase = ''
|
|
runHook preInstall
|
|
|
|
install -D ./src/Linux/tests "$out/bin/tests"
|
|
|
|
runHook postInstall
|
|
'';
|
|
|
|
postFixup = ''
|
|
wrapProgram "$out/bin/tests" \
|
|
--prefix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ sgx-azure-dcap-client ]}"
|
|
'';
|
|
})
|