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

commit 59dadd716282a668de18f164f80a535aa3f3ce52
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sun Nov 24 19:47:39 2024 +0000

    gnu: go-github-com-xdg-go-scram: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-xdg-go-scram): Move from here ...
    * gnu/packages/golang-web.scm: ... to here.
    
    Change-Id: I1aacfb2fe0b0adfa0142774c29557f6dd6751e85
---
 gnu/packages/golang-web.scm | 28 ++++++++++++++++++++++++++++
 gnu/packages/golang.scm     | 26 --------------------------
 2 files changed, 28 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/golang-web.scm b/gnu/packages/golang-web.scm
index c0b76f89b6..0a4b332603 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5988,6 +5988,34 @@ missing it.  It address the issues
 @url{https://github.com/golang/go/issues/68082, #68082}.")
     (license license:bsd-3)))
 
+(define-public go-github-com-xdg-go-scram
+  (package
+    (name "go-github-com-xdg-go-scram")
+    (version "1.1.2")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/xdg-go/scram";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1bkznny84fdn4sy3wq5680v424glsq9nh2169qy51213bah6by84"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/xdg-go/scram"))
+    (propagated-inputs
+     (list go-github-com-xdg-go-stringprep
+           go-github-com-xdg-go-pbkdf2))
+    (home-page "https://github.com/xdg-go/scram";)
+    (synopsis "Go implementation of RFC-5802")
+    (description
+     "Package scram provides client and server implementations of the
+@acronym{Salted Challenge Response Authentication Mechanism, SCRAM} described
+in RFC-5802 and RFC-7677.")
+    (license license:asl2.0)))
+
 (define-public go-github-com-xeipuuv-gojsonpointer
   (let ((commit "4e3ac2762d5f479393488629ee9370b50873b3a6")
         (revision "0"))
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 713381835a..0a44c83065 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5821,32 +5821,6 @@ algorithm described in 
@url{https://rfc-editor.org/rfc/rfc2898.html,RFC 2898}
 and @url{https://rfc-editor.org/rfc/rfc8018.html,RFC 8018}.")
     (license license:asl2.0)))
 
-(define-public go-github-com-xdg-go-scram
-  (package
-    (name "go-github-com-xdg-go-scram")
-    (version "1.1.2")
-    (source
-      (origin
-        (method git-fetch)
-        (uri (git-reference
-               (url "https://github.com/xdg-go/scram";)
-               (commit (string-append "v" version))))
-        (file-name (git-file-name name version))
-        (sha256
-         (base32 "1bkznny84fdn4sy3wq5680v424glsq9nh2169qy51213bah6by84"))))
-    (build-system go-build-system)
-    (arguments '(#:import-path "github.com/xdg-go/scram"))
-    (propagated-inputs
-     (list go-github-com-xdg-go-stringprep
-           go-github-com-xdg-go-pbkdf2))
-    (home-page "https://github.com/xdg-go/scram";)
-    (synopsis "Go implementation of RFC-5802")
-    (description
-     "Package scram provides client and server implementations of the
-@acronym{Salted Challenge Response Authentication Mechanism, SCRAM} described 
in
-RFC-5802 and RFC-7677.")
-    (license license:asl2.0)))
-
 (define-public go-github-com-godbus-dbus
   (package
     (name "go-github-com-godbus-dbus")

Reply via email to