diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2024-12-22 01:15:39 +0000 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-01-21 23:42:14 +0000 |
commit | f49382b19a0cf7ef730ee13047a9aba2671508c6 (patch) | |
tree | 2c1301e3be3005aa2e7183d0a7916901b947064e /gnu/packages/golang-crypto.scm | |
parent | 6bc265ba9f6f4e612f01afcff2b341a149bb7b91 (diff) |
gnu: Add go-github-com-gliderlabs-ssh.
* gnu/packages/golang-crypto.scm (go-github-com-gliderlabs-ssh): New variable.
Change-Id: Ibdfd4b6a0c7810ec52f6502b175325eae0292a0e
Diffstat (limited to 'gnu/packages/golang-crypto.scm')
-rw-r--r-- | gnu/packages/golang-crypto.scm | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm index dc4bbd0ba8..af160d91d9 100644 --- a/gnu/packages/golang-crypto.scm +++ b/gnu/packages/golang-crypto.scm @@ -815,6 +815,34 @@ providing bidirectional mapping values to their names, plus enum convenience for values.") (license license:bsd-3))) +(define-public go-github-com-gliderlabs-ssh + (package + (name "go-github-com-gliderlabs-ssh") + (version "0.3.8") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/gliderlabs/ssh") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "01svn6n2i7gb3j4wvjh3d7xyh3n0kxm5cda2kg9vgpl1l3bbsvqm")))) + (build-system go-build-system) + (arguments + (list + #:import-path "github.com/gliderlabs/ssh")) + (propagated-inputs + (list go-github-com-anmitsu-go-shlex + go-golang-org-x-crypto)) + (home-page "https://github.com/gliderlabs/ssh") + (synopsis "SSH servers in Golang") + (description + "Package ssh wraps the crypto/ssh package with a higher-level API for +building SSH servers. The goal of the API was to make it as simple as using +net/http, so the API is very similar.") + (license license:bsd-3))) + (define-public go-github-com-go-asn1-ber-asn1-ber (package (name "go-github-com-go-asn1-ber-asn1-ber") |