mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-02 15:41:48 +00:00
32 lines
944 B
Nix
32 lines
944 B
Nix
{ stdenv, fetchurl, trousers, openssl, opencryptoki }:
|
|
|
|
let
|
|
version = "1.3.8";
|
|
in
|
|
stdenv.mkDerivation rec {
|
|
name = "tpm-tools-${version}";
|
|
|
|
src = fetchurl {
|
|
url = "mirror://sourceforge/trousers/tpm-tools/${version}/${name}.tar.gz";
|
|
sha256 = "10za1gi89vi9m2lmm7jfzs281h55x1sbbm2bdgdh692ljpq4zsv6";
|
|
};
|
|
|
|
buildInputs = [ trousers openssl opencryptoki ];
|
|
|
|
patches = [ ./03-fix-bool-error-parseStringWithValues.patch ];
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Management tools for TPM hardware";
|
|
longDescription = ''
|
|
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;
|
|
};
|
|
}
|
|
|