7080e6ec1d
Semi-automatic update generated by https://github.com/ryantm/nixpkgs-update tools. This update was made based on information from https://repology.org/metapackage/tpm2-tss/versions
48 lines
1.2 KiB
Nix
48 lines
1.2 KiB
Nix
{ stdenv, lib, fetchurl
|
|
, cmocka, doxygen, ibm-sw-tpm2, iproute, openssl, perl, pkgconfig, procps
|
|
, uthash, which }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tpm2-tss";
|
|
version = "2.2.3";
|
|
|
|
src = fetchurl {
|
|
url = "https://github.com/tpm2-software/${pname}/releases/download/${version}/${pname}-${version}.tar.gz";
|
|
sha256 = "1hwrka0g817a4d1177vv0z13gp66bxzxhflfxswjhcdk93kaws8k";
|
|
};
|
|
|
|
nativeBuildInputs = [
|
|
doxygen perl pkgconfig
|
|
# For unit tests and integration tests.
|
|
ibm-sw-tpm2 iproute procps which
|
|
];
|
|
buildInputs = [
|
|
openssl
|
|
# For unit tests and integration tests.
|
|
cmocka uthash
|
|
];
|
|
|
|
postPatch = "patchShebangs script";
|
|
|
|
configureFlags = [
|
|
"--enable-unit"
|
|
"--enable-integration"
|
|
];
|
|
|
|
doCheck = true;
|
|
|
|
postInstall = ''
|
|
# Do not install the upstream udev rules, they rely on specific
|
|
# users/groups which aren't guaranteed to exist on the system.
|
|
rm -R $out/lib/udev
|
|
'';
|
|
|
|
meta = with lib; {
|
|
description = "OSS implementation of the TCG TPM2 Software Stack (TSS2)";
|
|
homepage = https://github.com/tpm2-software/tpm2-tss;
|
|
license = licenses.bsd2;
|
|
platforms = platforms.linux;
|
|
maintainers = with maintainers; [ delroth ];
|
|
};
|
|
}
|