guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 6d58d9f26e86793129ede0359953113812190210
Author: Danny Milosavljevic <[email protected]>
AuthorDate: Fri Dec 5 19:20:08 2025 +0100

    gnu: Add go-github-com-loft-sh-ssh.
    
    * gnu/packages/golang-xyz.scm (go-github-com-loft-sh-ssh): New variable.
    
    Change-Id: I6065dfb7038488e91e3c8a3fc0809dcda1ea227c
    Modified--by: Sharlatan Hellseher <[email protected]>
    Signed-off-by: Sharlatan Hellseher <[email protected]>
---
 gnu/packages/golang-crypto.scm | 35 +++++++++++++++++++++++++++++++++++
 1 file changed, 35 insertions(+)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index c537493b99..f60be25954 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1767,6 +1767,41 @@ hash.")
       (description "PKI based identities for use in @command{go-libp2p}.")
       (license license:expat))))
 
+(define-public go-github-com-loft-sh-ssh
+  (package
+    (name "go-github-com-loft-sh-ssh")
+    (version "0.0.5")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/loft-sh/ssh";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1bbc536knxipjkd6b9cfld94qy5n9pw3pc8bdjvmsiapa5356417"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/loft-sh/ssh"
+      #:test-flags
+      #~(list "-skip" (string-join
+                       (list "TestLocalUnixForwardingRespectsCallback"
+                             "TestLocalUnixForwardingWorks"
+                             "TestReverseUnixForwardingWorks")
+                       "|"))))
+    (propagated-inputs
+     (list go-github-com-anmitsu-go-shlex
+           go-golang-org-x-crypto))
+    (home-page "https://github.com/loft-sh/ssh";)
+    (synopsis "SSH servers in Golang")
+    (description
+     "Package ssh wraps the @code{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.  It's alternaive fork of
+@url{https://github.com/gliderlabs/ssh}.";)
+    (license license:bsd-3)))
+
 (define-public go-github-com-marten-seemann-chacha20
   (package
     (name "go-github-com-marten-seemann-chacha20")

Reply via email to