1 { lib, stdenv, fetchurl, trousers, openssl }:
3 stdenv.mkDerivation rec {
4 pname = "tpm-quote-tools";
8 url = "mirror://sourceforge/project/tpmquotetools/${version}/${pname}-${version}.tar.gz";
9 sha256 = "1qjs83xb4np4yn1bhbjfhvkiika410v8icwnjix5ad96w2nlxp0h";
12 buildInputs = [ trousers openssl ];
16 --set-rpath "${lib.makeLibraryPath [ openssl ]}:$(patchelf --print-rpath $out/bin/tpm_mkaik)" \
21 description = "Collection of programs that provide support for TPM based attestation using the TPM quote mechanism";
23 The TPM Quote Tools is a collection of programs that provide support
24 for TPM based attestation using the TPM quote mechanism. The manual
25 page for tpm_quote_tools provides a usage overview.
27 homepage = "http://tpmquotetools.sourceforge.net/";
28 license = licenses.bsd3;
29 maintainers = with maintainers; [ ak ];
30 platforms = platforms.linux;