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

commit 7083ce7a8c84400e71dc9c7e0c95d9ad214e597c
Author: Sharlatan Hellseher <sharlata...@gmail.com>
AuthorDate: Sat Feb 22 08:42:06 2025 +0000

    gnu: go-github-com-operatorfoundation-shapeshifter-ipc: Move to 
golang-crytpo.
    
    * gnu/packages/golang.scm 
(go-github-com-operatorfoundation-shapeshifter-ipc):
    Move from here ...
    * gnu/packages/golang-crypto.scm: ... to here.
    
    Change-Id: I4a41a0f49845af734a91333ab45fc8295411589e
---
 gnu/packages/golang-crypto.scm | 26 ++++++++++++++++++++++++++
 gnu/packages/golang.scm        | 26 --------------------------
 2 files changed, 26 insertions(+), 26 deletions(-)

diff --git a/gnu/packages/golang-crypto.scm b/gnu/packages/golang-crypto.scm
index 122bc4850e..bc4084fe44 100644
--- a/gnu/packages/golang-crypto.scm
+++ b/gnu/packages/golang-crypto.scm
@@ -1954,6 +1954,32 @@ obfuscated via the Elligator 2 mapping.
 @end itemize")
     (license license:bsd-2)))
 
+(define-public go-github-com-operatorfoundation-shapeshifter-ipc
+  (package
+    (name "go-github-com-operatorfoundation-shapeshifter-ipc")
+    (version "2.0.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/OperatorFoundation/shapeshifter-ipc";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "1q1fcnllg462nfca16s5mr0n2jh92x3hj946qnaqc682phjz04lg"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:tests? #f ; all tests fail with error: undefined: Args.
+      #:import-path "github.com/OperatorFoundation/shapeshifter-ipc"))
+    (home-page "https://github.com/OperatorFoundation/shapeshifter-ipc";)
+    (synopsis "Go implementation of the Pluggable Transports IPC protocol")
+    (description
+     "Shapeshifter-IPC is a library for Go implementing the IPC
+protocol from the Pluggable Transports 2.0 specification.")
+    (license license:expat)))
+
 (define-public go-github-com-pion-randutil
   (package
     (name "go-github-com-pion-randutil")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 64675b9f5b..883cfe38d7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -1208,32 +1208,6 @@ form that bypasses network filtering, allowing the 
application to work on
 networks where it would otherwise be blocked or heavily throttled.")
     (license license:expat)))
 
-(define-public go-github-com-operatorfoundation-shapeshifter-ipc
-  (package
-    (name "go-github-com-operatorfoundation-shapeshifter-ipc")
-    (version "2.0.0")
-    (source
-     (origin
-       (method git-fetch)
-       (uri
-        (git-reference
-         (url "https://github.com/OperatorFoundation/shapeshifter-ipc";)
-         (commit (string-append "v" version))))
-       (file-name (git-file-name name version))
-       (sha256
-        (base32 "1q1fcnllg462nfca16s5mr0n2jh92x3hj946qnaqc682phjz04lg"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:skip-build? #t
-      #:tests? #f ; all tests fail with error: undefined: Args.
-      #:import-path "github.com/OperatorFoundation/shapeshifter-ipc"))
-    (home-page "https://github.com/OperatorFoundation/shapeshifter-ipc";)
-    (synopsis "Go implementation of the Pluggable Transports IPC protocol")
-    (description "Shapeshifter-IPC is a library for Go implementing the IPC
-protocol from the Pluggable Transports 2.0 specification.")
-    (license license:expat)))
-
 (define-public go-github-com-willscott-goturn
     (package
       (name "go-github-com-willscott-goturn")

Reply via email to