nixpkgs/pkgs/tools/security/tpm2-abrmd/default.nix

40 lines
1.2 KiB
Nix
Raw Normal View History

2019-10-26 11:45:30 +00:00
{ stdenv, fetchurl, lib
2020-06-16 10:47:37 +00:00
, makeWrapper, tpm2-tss, pkgconfig, glib, which, dbus, cmocka }:
2019-10-26 11:45:30 +00:00
stdenv.mkDerivation rec {
pname = "tpm2-abrmd";
2020-06-16 10:47:37 +00:00
version = "2.3.2";
2019-10-26 11:45:30 +00:00
src = fetchurl {
url = "https://github.com/tpm2-software/${pname}/releases/download/${version}/${pname}-${version}.tar.gz";
2020-06-16 10:47:37 +00:00
sha256 = "040d01pdzkj0nc1c0vsf6gfqf28cgil03ix8dasijvhiha4c20nz";
2019-10-26 11:45:30 +00:00
};
2020-06-16 10:47:37 +00:00
nativeBuildInputs = [ pkgconfig makeWrapper ];
2019-10-26 11:45:30 +00:00
buildInputs = [
tpm2-tss glib which dbus cmocka
];
2020-06-16 11:18:11 +00:00
enableParallelBuilding = true;
2019-10-26 11:45:30 +00:00
# Unit tests are currently broken as the check phase attempts to start a dbus daemon etc.
#configureFlags = [ "--enable-unit" ];
doCheck = false;
2020-06-16 10:47:37 +00:00
# Even though tpm2-tss is in the RUNPATH, starting from 2.3.0 abrmd
# seems to require the path to the device TCTI (used for accessing
# /dev/tpm0) in it's LD_LIBRARY_PATH
postFixup = ''
wrapProgram $out/bin/tpm2-abrmd \
--suffix LD_LIBRARY_PATH : "${lib.makeLibraryPath [ tpm2-tss ]}"
'';
2019-10-26 11:45:30 +00:00
meta = with lib; {
description = "TPM2 resource manager, accessible via D-Bus";
homepage = "https://github.com/tpm2-software/tpm2-tools";
2019-10-26 11:45:30 +00:00
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ lschuermann ];
};
}