ibm-sw-tpm2: Fix build on RISC-V
This commit is contained in:
parent
2736cee9ae
commit
8524b11d55
@ -1,4 +1,4 @@
|
|||||||
{ stdenv, fetchurl, lib, openssl }:
|
{ stdenv, fetchurl, fetchpatch, lib, openssl }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
pname = "ibm-sw-tpm2";
|
pname = "ibm-sw-tpm2";
|
||||||
@ -9,6 +9,15 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "sha256-VRRZKK0rJPNL5qDqz5+0kuEODqkZuEKMch+pcOhdYUc=";
|
sha256 = "sha256-VRRZKK0rJPNL5qDqz5+0kuEODqkZuEKMch+pcOhdYUc=";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
patches = [
|
||||||
|
(fetchpatch {
|
||||||
|
url = "https://github.com/kgoldman/ibmswtpm2/commit/e6684009aff9c1bad38875e3319c2e02ef791424.patch";
|
||||||
|
sha256 = "1flzlri807c88agmpb0w8xvh5f16mmqv86xw4ic4z272iynzd40j";
|
||||||
|
})
|
||||||
|
];
|
||||||
|
|
||||||
|
patchFlags = [ "-p2" ];
|
||||||
|
|
||||||
buildInputs = [ openssl ];
|
buildInputs = [ openssl ];
|
||||||
|
|
||||||
sourceRoot = "src";
|
sourceRoot = "src";
|
||||||
|
Loading…
Reference in New Issue
Block a user