tkey-ssh-agent: init at 1.0.0
This commit is contained in:
parent
5302e89614
commit
d431aff11b
1 changed files with 27 additions and 0 deletions
27
pkgs/by-name/tk/tkey-ssh-agent/package.nix
Normal file
27
pkgs/by-name/tk/tkey-ssh-agent/package.nix
Normal file
|
@ -0,0 +1,27 @@
|
|||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "tkey-ssh-agent";
|
||||
version = "1.0.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "tillitis";
|
||||
repo = "tkey-ssh-agent";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-Uf3VJJfZn4UYX1q79JdaOfrore+L/Mic3whzpP32JV0=";
|
||||
};
|
||||
|
||||
vendorHash = "sha256-SFyp1UB6+m7/YllRyY56SwweJ3X175bChXQYiG2M7zM=";
|
||||
|
||||
subPackages = [
|
||||
"cmd/tkey-ssh-agent"
|
||||
];
|
||||
|
||||
meta = with lib; {
|
||||
description = "SSH Agent for TKey, the flexible open hardware/software USB security key";
|
||||
homepage = "https://tillitis.se/app/tkey-ssh-agent/";
|
||||
license = licenses.gpl2;
|
||||
maintainers = with maintainers; [ bbigras ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
Loading…
Reference in a new issue