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

commit 95841c983f28598423e06913157142fac21b84d5
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Dec 21 23:29:35 2024 +0000

    gnu: go-github-com-emirpasic-gods: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-emirpasic-gods): Move from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I49097629697760c68a25eb6179114b43e92538a3
---
 gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
 gnu/packages/golang.scm     | 24 ------------------------
 2 files changed, 25 insertions(+), 24 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index ab4fc972a4..ba2959adad 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -3395,6 +3395,31 @@ specified in 
@url{https://datatracker.ietf.org/doc/html/rfc6350, RFC 6350}.")
 @url{https://tools.ietf.org/html/rfc6352, RFC 6352} specifications.")
     (license license:expat)))
 
+(define-public go-github-com-emirpasic-gods
+  (package
+    (name "go-github-com-emirpasic-gods")
+    (version "1.18.1")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/emirpasic/gods";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0vnnmv813m8yhykwlxpizpvpimsirbaiwa3ckxfyx3ybv1swlq44"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:skip-build? #t
+      #:import-path "github.com/emirpasic/gods"))
+    (home-page "https://github.com/emirpasic/gods/";)
+    (synopsis "Implementation of various data structures and algorithms in Go")
+    (description
+     "This package provides implementation of various data structures and
+algorithms in Go.")
+    (license license:bsd-2)))
+
 (define-public go-github-com-erikgeiser-coninput
   (package
     (name "go-github-com-erikgeiser-coninput")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 491eedd586..39aebf709c 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -4871,30 +4871,6 @@ use one of our glamorous default themes.")
      "A simple, efficient spring animation library for smooth, natural 
motion.")
     (license license:expat)))
 
-(define-public go-github-com-emirpasic-gods
-  (package
-    (name "go-github-com-emirpasic-gods")
-    (version "1.18.1")
-    (source (origin
-              (method git-fetch)
-              (uri (git-reference
-                    (url "https://github.com/emirpasic/gods";)
-                    (commit (string-append "v" version))))
-              (file-name (git-file-name name version))
-              (sha256
-               (base32
-                "0vnnmv813m8yhykwlxpizpvpimsirbaiwa3ckxfyx3ybv1swlq44"))))
-    (build-system go-build-system)
-    (arguments
-     (list
-      #:skip-build? #t
-      #:import-path "github.com/emirpasic/gods"))
-    (home-page "https://github.com/emirpasic/gods/";)
-    (synopsis "Implementation of various data structures and algorithms in Go")
-    (description "This package provides implementation of various data
-structures and algorithms in Go.")
-    (license license:bsd-2)))
-
 (define-public go-gopkg-in-warnings
   (package
     (name "go-gopkg-in-warnings")

Reply via email to