1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/security/tpm-tools/default.nix

23 lines
807 B
Nix

{stdenv, fetchurl, autoconf, automake, trousers, openssl}:
stdenv.mkDerivation {
name = "tpm-tools-1.3.8";
src = fetchurl {
url = https://sourceforge.net/projects/trousers/files/tpm-tools/1.3.8/tpm-tools-1.3.8.tar.gz;
sha256 = "10za1gi89vi9m2lmm7jfzs281h55x1sbbm2bdgdh692ljpq4zsv6";
};
buildInputs = [ trousers openssl ];
meta = with stdenv.lib; {
description = ''tpm-tools is an open-source package designed to enable user and application
enablement of Trusted Computing using a Trusted Platform Module (TPM),
similar to a smart card environment.'';
homepage = http://sourceforge.net/projects/trousers/files/tpm-tools/;
license = licenses.cpl10;
maintainers = [ maintainers.ak ];
platforms = platforms.unix;
};
}