3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/security/tpm2-tools/default.nix

31 lines
834 B
Nix
Raw Normal View History

{ stdenv, fetchurl, lib
2019-02-14 05:12:32 +00:00
, cmocka, curl, pandoc, pkgconfig, openssl, tpm2-tss }:
stdenv.mkDerivation rec {
pname = "tpm2-tools";
2019-03-15 00:34:24 +00:00
version = "3.1.4";
2019-02-14 05:12:32 +00:00
src = fetchurl {
url = "https://github.com/tpm2-software/${pname}/releases/download/${version}/${pname}-${version}.tar.gz";
2019-03-15 00:34:24 +00:00
sha256 = "0cv09wnf7sw17z1n898w0zmk58y8b1why58m63hqx5d7x4054l9g";
2019-02-14 05:12:32 +00:00
};
nativeBuildInputs = [ pandoc pkgconfig ];
buildInputs = [
curl openssl tpm2-tss
# For unit tests.
cmocka
];
configureFlags = [ "--enable-unit" ];
doCheck = true;
meta = with lib; {
description = "Command line tools that provide access to a TPM 2.0 compatible device";
homepage = https://github.com/tpm2-software/tpm2-tools;
license = licenses.bsd3;
platforms = platforms.linux;
maintainers = with maintainers; [ delroth ];
};
}