2019-06-16 20:59:06 +01:00
|
|
|
{ stdenv, fetchurl, lib
|
2021-02-16 00:43:58 +00:00
|
|
|
, pandoc, pkg-config, makeWrapper, curl, openssl, tpm2-tss, libuuid
|
2019-10-27 10:30:06 +00:00
|
|
|
, abrmdSupport ? true, tpm2-abrmd ? null }:
|
2019-02-14 05:12:32 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "tpm2-tools";
|
2021-02-16 00:43:58 +00:00
|
|
|
version = "5.0";
|
2019-02-14 05:12:32 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://github.com/tpm2-software/${pname}/releases/download/${version}/${pname}-${version}.tar.gz";
|
2021-02-16 00:43:58 +00:00
|
|
|
sha256 = "sha256-4bkH/imHdigFLgithO68bD92RtKVBe1IYulhYqjJG6E=";
|
2019-02-14 05:12:32 +00:00
|
|
|
};
|
|
|
|
|
2021-01-17 03:51:22 +00:00
|
|
|
nativeBuildInputs = [ pandoc pkg-config makeWrapper ];
|
2019-02-14 05:12:32 +00:00
|
|
|
buildInputs = [
|
2021-02-16 00:43:58 +00:00
|
|
|
curl openssl tpm2-tss libuuid
|
2019-02-14 05:12:32 +00:00
|
|
|
];
|
|
|
|
|
2019-10-27 10:30:06 +00:00
|
|
|
preFixup = let
|
|
|
|
ldLibraryPath = lib.makeLibraryPath ([
|
|
|
|
tpm2-tss
|
|
|
|
] ++ (lib.optional abrmdSupport tpm2-abrmd));
|
|
|
|
in ''
|
2021-04-27 18:21:30 +01:00
|
|
|
wrapProgram $out/bin/tpm2 --suffix LD_LIBRARY_PATH : "${ldLibraryPath}"
|
|
|
|
wrapProgram $out/bin/tss2 --suffix LD_LIBRARY_PATH : "${ldLibraryPath}"
|
2019-10-27 10:30:06 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
|
|
|
|
# Unit tests disabled, as they rely on a dbus session
|
|
|
|
#configureFlags = [ "--enable-unit" ];
|
|
|
|
doCheck = false;
|
2019-02-14 05:12:32 +00:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Command line tools that provide access to a TPM 2.0 compatible device";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://github.com/tpm2-software/tpm2-tools";
|
2019-02-14 05:12:32 +00:00
|
|
|
license = licenses.bsd3;
|
|
|
|
platforms = platforms.linux;
|
|
|
|
maintainers = with maintainers; [ delroth ];
|
|
|
|
};
|
|
|
|
}
|