pkgs: drop ssh-tpm-agent (merged upstream)
This commit is contained in:
parent
087b583dd2
commit
7118348263
2 changed files with 0 additions and 34 deletions
|
@ -3,7 +3,6 @@
|
||||||
{
|
{
|
||||||
nixpkgs.overlays = [
|
nixpkgs.overlays = [
|
||||||
(self: super: {
|
(self: super: {
|
||||||
ssh-tpm-agent = pkgs.callPackage ./pkgs/ssh-tpm-agent.nix { };
|
|
||||||
})
|
})
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,33 +0,0 @@
|
||||||
{ lib
|
|
||||||
, buildGo122Module
|
|
||||||
, fetchFromGitHub
|
|
||||||
, openssl
|
|
||||||
}:
|
|
||||||
|
|
||||||
buildGo122Module rec {
|
|
||||||
pname = "ssh-tpm-agent";
|
|
||||||
version = "0.3.1";
|
|
||||||
|
|
||||||
src = fetchFromGitHub {
|
|
||||||
owner = "Foxboron";
|
|
||||||
repo = "ssh-tpm-agent";
|
|
||||||
rev = "v${version}";
|
|
||||||
hash = "sha256-8CGSiCOcns4cWkYWqibs6hAFRipYabKPCpkhxF4OE8w=";
|
|
||||||
};
|
|
||||||
|
|
||||||
proxyVendor = true;
|
|
||||||
|
|
||||||
vendorHash = "sha256-zUAIesBeuh1zlxXcjKSNmMawZGgUr9z3NzT0XKn/YCQ=";
|
|
||||||
|
|
||||||
buildInputs = [
|
|
||||||
openssl
|
|
||||||
];
|
|
||||||
|
|
||||||
meta = with lib; {
|
|
||||||
description = "SSH agent with support for TPM sealed keys for public key authentication";
|
|
||||||
homepage = "https://github.com/Foxboron/ssh-agent-tpm";
|
|
||||||
license = licenses.mit;
|
|
||||||
platforms = platforms.linux;
|
|
||||||
maintainers = with maintainers; [ sgo ];
|
|
||||||
};
|
|
||||||
}
|
|
Loading…
Reference in a new issue