Merge pull request #167940 from helsinki-systems/upd/tpm2-tts

tpm2-tss: 3.0.3 -> 3.2.0
This commit is contained in:
Janne Heß
2022-04-09 19:36:32 +02:00
committed by GitHub
@@ -2,6 +2,7 @@
, autoreconfHook, autoconf-archive, pkg-config, doxygen, perl
, openssl, json_c, curl, libgcrypt
, cmocka, uthash, ibm-sw-tpm2, iproute2, procps, which
, shadow
}:
let
# Avoid a circular dependency on Linux systems (systemd depends on tpm2-tss,
@@ -14,17 +15,18 @@ in
stdenv.mkDerivation rec {
pname = "tpm2-tss";
version = "3.0.3";
version = "3.2.0";
src = fetchFromGitHub {
owner = "tpm2-software";
repo = pname;
rev = version;
sha256 = "106yhsjwjadxsl9dqxywg287mdwsksman02hdalhav18vcnvnlpj";
sha256 = "1jijxnvjcsgz5yw4i9fj7ycdnnz90r3l0zicpwinswrw47ac3yy5";
};
nativeBuildInputs = [
autoreconfHook autoconf-archive pkg-config doxygen perl
shadow
];
# cmocka is checked / used(?) in the configure script
@@ -85,6 +87,6 @@ stdenv.mkDerivation rec {
homepage = "https://github.com/tpm2-software/tpm2-tss";
license = licenses.bsd2;
platforms = platforms.linux;
maintainers = with maintainers; [ delroth ];
maintainers = with maintainers; [ ];
};
}