diff options
author | Sharlatan Hellseher <[email protected]> | 2024-12-22 01:15:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <[email protected]> | 2025-01-21 23:42:13 +0000 |
commit | 9b0a363f9b4f2ccecd2f7a647cb7a53e4f5aaf9a (patch) | |
tree | fa32bd7ac55bfaf8603e819fe2a98666af164a99 | |
parent | e1e4ccc18a9fed8bdf642247a7e071854efcf242 (diff) |
gnu: Add go-github-com-skeema-knownhosts.
* gnu/packages/golang-crypto.scm (go-github-com-skeema-knownhosts): New variable.
Change-Id: I36f3bde40845c02bb950097edc55ecddb8cb26eb
-rw-r--r-- | gnu/packages/golang-crypto.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index 7cd59d869f..2a266e2fa3 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -1613,6 +1613,32 @@ wide-block encryption mode developed by Halevi and Rogaway.") tunnel proxy protocol.") (license license:asl2.0))) +(define-public go-github-com-skeema-knownhosts + (package + (name "go-github-com-skeema-knownhosts") + (version "1.3.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/skeema/knownhosts") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1i74wqingiflrrvpzhahwdly9f8c27i2far1qxkszi7aswhpj956")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/skeema/knownhosts")) + (propagated-inputs (list go-golang-org-x-crypto)) + (home-page "https://github.com/skeema/knownhosts") + (synopsis "Go SSH known_hosts wrapper with host key lookup") + (description + "Package knownhosts is a thin wrapper around @code{golang.org/x/crypto/ssh/knownhosts}, +adding the ability to obtain the list of host key algorithms for a known +host.") + (license license:asl2.0))) + (define-public go-github-com-xanzy-ssh-agent (package (name "go-github-com-xanzy-ssh-agent") |