2013-08-14 08:16:52 +02:00
|
|
|
{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 ];
|
2014-04-22 14:04:36 +02:00
|
|
|
|
|
|
|
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;
|
|
|
|
};
|
2013-08-14 08:16:52 +02:00
|
|
|
}
|