guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

06/20: gnu: go-github-com-xdg-go-scram: Move to golang-xyz.


From: guix-commits
Subject: 06/20: gnu: go-github-com-xdg-go-scram: Move to golang-xyz.
Date: Sun, 24 Nov 2024 16:48:51 -0500 (EST)

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

commit 6b3b19dc9a450396bd562879d1429f8a00183937
Author: Sharlatan Hellseher <sharlatanus@gmail.com>
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 852ea31427..30eec83016 100644
--- a/gnu/packages/golang-web.scm
+++ b/gnu/packages/golang-web.scm
@@ -5941,6 +5941,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 8bf0594738..2ebc647110 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -5820,32 +5820,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

[Prev in Thread] Current Thread [Next in Thread]