guix_mirror_bot pushed a commit to branch go-team
in repository guix.

commit 837ffdb28d26dfbdf40efd7c8fe383496276b3e1
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Fri Feb 13 00:25:40 2026 +0000

    gnu: go-github-com-pkg-sftp: Move to golang-crypto.
    
    * gnu/packages/golang-web.scm (go-github-com-pkg-sftp): Move from here ...
    * gnu/packages/golang-crypto.scm: ... to here.
    
    Change-Id: I0db23217eb6013898aaded60c7cb169ef1c7de9f
---
 gnu/packages/golang-crypto.scm | 31 +++++++++++++++++++++++++++++++
 gnu/packages/golang-web.scm    | 28 ----------------------------
 2 files changed, 31 insertions(+), 28 deletions(-)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 5cf8039dba..666f32ae01 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -2584,6 +2584,37 @@ done by Marc Stevens and Dan Shumow, and can be found at:
 
@@url{https://github.com/cr-marcstevens/sha1collisiondetection,https://github.com/cr-marcstevens/sha1collisiondetection}.";)
     (license license:asl2.0)))
 
+(define-public go-github-com-pkg-sftp
+  (package
+    (name "go-github-com-pkg-sftp")
+    (version "1.13.7")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/pkg/sftp";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0hhnsl327acwlmvp8wk4x1ml2mi6gdrdwm1dh9666n2cj9d8yj24"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/pkg/sftp"))
+    (native-inputs
+     (list go-github-com-stretchr-testify))
+    (propagated-inputs
+     (list go-golang-org-x-crypto
+           go-github-com-kr-fs))
+    (home-page "https://github.com/pkg/sftp";)
+    (synopsis "SFTP implementation for Go")
+    (description
+     "This package provides an @acronym{SFTP, SSH File Transfer Protocol}
+implementation, as described in
+@url{https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-02.txt},
+for Go.")
+    (license license:bsd-2)))
+
 (define-public go-github-com-proglottis-gpgme
   (package
     (name "go-github-com-proglottis-gpgme")
diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index 27f9a64e14..d2dc3eb1c0 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -12879,34 +12879,6 @@ browser window.  The choice of which browser is 
started is entirely client
 dependant.")
     (license license:bsd-2)))
 
-(define-public go-github-com-pkg-sftp
-  (package
-    (name "go-github-com-pkg-sftp")
-    (version "1.13.7")
-    (source
-     (origin
-       (method git-fetch)
-       (uri (git-reference
-             (url "https://github.com/pkg/sftp";)
-             (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "0hhnsl327acwlmvp8wk4x1ml2mi6gdrdwm1dh9666n2cj9d8yj24"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:import-path "github.com/pkg/sftp"))
-    (propagated-inputs (list go-golang-org-x-crypto go-github-com-kr-fs))
-    (native-inputs (list go-github-com-stretchr-testify))
-    (home-page "https://github.com/pkg/sftp";)
-    (synopsis "SFTP implementation for Go")
-    (description
-     "This package provides an @acronym{SFTP, SSH File Transfer Protocol}
-implementation, as described in
-@url{https://filezilla-project.org/specs/draft-ietf-secsh-filexfer-02.txt},
-for Go.")
-    (license license:bsd-2)))
-
 (define-public go-github-com-planetscale-vtprotobuf
   (package
     (name "go-github-com-planetscale-vtprotobuf")

Reply via email to