tpm2-tss: fix build
Channel blocker https://hydra.nixos.org/build/109901320
This commit is contained in:
parent
ffe6b959a1
commit
5b0c0bbc08
@ -1,6 +1,7 @@
|
||||
{ stdenv, lib, fetchurl
|
||||
{ stdenv, lib, fetchurl, fetchpatch
|
||||
, cmocka, doxygen, ibm-sw-tpm2, iproute, openssl, perl, pkgconfig, procps
|
||||
, uthash, which }:
|
||||
, uthash, which
|
||||
}:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
pname = "tpm2-tss";
|
||||
@ -11,6 +12,14 @@ stdenv.mkDerivation rec {
|
||||
sha256 = "19jg09sxy3aj4dc1yv32jjv0m62cnmhjlw02jbh4d4pk2439m4l2";
|
||||
};
|
||||
|
||||
patches = [
|
||||
# Fix test failure. see https://github.com/tpm2-software/tpm2-tss/pull/1585
|
||||
(fetchpatch {
|
||||
url = "https://patch-diff.githubusercontent.com/raw/tpm2-software/tpm2-tss/pull/1585.patch";
|
||||
sha256 = "0ak3l588ahzv3yx1gfa4sa6p74lsffxzkr23ppznm34wvlcci86n";
|
||||
})
|
||||
];
|
||||
|
||||
nativeBuildInputs = [
|
||||
doxygen perl pkgconfig
|
||||
# For unit tests and integration tests.
|
||||
|
Loading…
Reference in New Issue
Block a user