forked from mirrors/nixpkgs
simple-tpm-pk11: 2016-07-12 -> 0.06
This commit is contained in:
parent
39c219ca81
commit
ac060f55f3
|
@ -1,17 +1,20 @@
|
||||||
{ stdenv, fetchgit, trousers, openssl, opencryptoki, automake, autoconf, libtool }:
|
{ stdenv, fetchFromGitHub, trousers, openssl, opencryptoki, autoreconfHook, libtool }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "simple-tpm-pk11-2016-07-12";
|
name = "simple-tpm-pk11-${version}";
|
||||||
|
version = "0.06";
|
||||||
|
|
||||||
src = fetchgit {
|
src = fetchFromGitHub {
|
||||||
url = "https://github.com/ThomasHabets/simple-tpm-pk11";
|
owner = "ThomasHabets";
|
||||||
rev = "6f1f7a6b96ac82965e977cfecb88d930f1d70243";
|
repo = "simple-tpm-pk11";
|
||||||
sha256 = "06vf3djp29slh7hrh4hlh3npyl277fy7d77jv9mxa1sk1idjklxc";
|
rev = version;
|
||||||
|
sha256 = "0vpbaklr4r1a2am0pqcm6m41ph22mkcrq33y8ab5h8qkhkvhd6a6";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ trousers openssl opencryptoki automake autoconf libtool ];
|
nativeBuildInputs = [ autoreconfHook libtool ];
|
||||||
|
buildInputs = [ trousers openssl opencryptoki ];
|
||||||
|
|
||||||
preConfigure = "sh bootstrap.sh";
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
meta = with stdenv.lib; {
|
||||||
description = "Simple PKCS11 provider for TPM chips";
|
description = "Simple PKCS11 provider for TPM chips";
|
||||||
|
@ -19,9 +22,8 @@ stdenv.mkDerivation rec {
|
||||||
A simple library for using the TPM chip to secure SSH keys.
|
A simple library for using the TPM chip to secure SSH keys.
|
||||||
'';
|
'';
|
||||||
homepage = https://github.com/ThomasHabets/simple-tpm-pk11;
|
homepage = https://github.com/ThomasHabets/simple-tpm-pk11;
|
||||||
license = stdenv.lib.licenses.asl20;
|
license = licenses.asl20;
|
||||||
maintainers = with stdenv.lib; [ maintainers.tstrobel ];
|
maintainers = with maintainers; [ tstrobel ];
|
||||||
platforms = platforms.unix;
|
platforms = platforms.unix;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue