forked from mirrors/nixpkgs
Merge pull request #170964 from SuperSandro2000/sgx
ssl: fix nix-env version parsing
This commit is contained in:
commit
d510b23805
|
@ -14,12 +14,12 @@ let
|
|||
in
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "sgx-ssl" + lib.optionalString debug "-debug";
|
||||
version = "lin_${sgxVersion}_${opensslVersion}";
|
||||
version = "${sgxVersion}_${opensslVersion}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "intel";
|
||||
repo = "intel-sgx-ssl";
|
||||
rev = version;
|
||||
rev = "lin_${sgxVersion}_${opensslVersion}";
|
||||
hash = "sha256-ibPXs90ni2fkxJ09fNO6wWVpfCFdko6MjBFkEsyIih8=";
|
||||
};
|
||||
|
||||
|
|
Loading…
Reference in a new issue