ibm-sw-tpm2: Fix build on RISC-V

main
Zhaofeng Li 3 years ago
parent 2736cee9ae
commit 8524b11d55
  1. 11
      pkgs/tools/security/ibm-sw-tpm2/default.nix

@ -1,4 +1,4 @@
{ stdenv, fetchurl, lib, openssl }:
{ stdenv, fetchurl, fetchpatch, lib, openssl }:
stdenv.mkDerivation rec {
pname = "ibm-sw-tpm2";
@ -9,6 +9,15 @@ stdenv.mkDerivation rec {
sha256 = "sha256-VRRZKK0rJPNL5qDqz5+0kuEODqkZuEKMch+pcOhdYUc=";
};
patches = [
(fetchpatch {
url = "https://github.com/kgoldman/ibmswtpm2/commit/e6684009aff9c1bad38875e3319c2e02ef791424.patch";
sha256 = "1flzlri807c88agmpb0w8xvh5f16mmqv86xw4ic4z272iynzd40j";
})
];
patchFlags = [ "-p2" ];
buildInputs = [ openssl ];
sourceRoot = "src";

Loading…
Cancel
Save