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

commit 2cefedbaafeaea302978da47a12fb579e9949ae2
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Sat Jan 11 12:53:00 2025 +0000

    gnu: go-github-com-michiwend-golang-pretty: Move to golang-xyz.
    
    * gnu/packages/golang.scm (go-github-com-michiwend-golang-pretty): Move 
from here ...
    * gnu/packages/golang-xyz.scm: ... to here.
    
    Change-Id: I851eb0caa396f84240579008b7b6c15cf906432c
---
 gnu/packages/golang-xyz.scm | 30 ++++++++++++++++++++++++++++++
 gnu/packages/golang.scm     | 32 --------------------------------
 2 files changed, 30 insertions(+), 32 deletions(-)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 0dd99d1a55..f3eb6544c1 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -10132,6 +10132,36 @@ language, namely support for record length-delimited 
message streaming.")
 colored strings.")
     (license license:expat)))
 
+(define-public go-github-com-michiwend-golang-pretty
+  (package
+    (name "go-github-com-michiwend-golang-pretty")
+    (version "0.0.0-20141116172505-8ac61812ea3f")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/michiwend/golang-pretty";)
+             (commit (go-version->git-ref version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "0rjfms0csjqi91xnddzx3rcrcaikc7xc027617px3kdwdap80ir4"))))
+    (build-system go-build-system)
+    (arguments
+     `(#:tests? #f                    ; Upstream tests seem to be broken.
+       #:import-path "github.com/michiwend/golang-pretty"))
+    (propagated-inputs
+     (list go-github-com-kr-text))
+    (home-page "https://github.com/michiwend/golang-pretty";)
+    (synopsis "Pretty printing for Go values")
+    (description
+     "Package @code{pretty} provides pretty-printing for Go values.  This is
+useful during debugging, to avoid wrapping long output lines in the terminal.
+
+It provides a function, @code{Formatter}, that can be used with any function
+that accepts a format string.  It also provides convenience wrappers for
+functions in packages @code{fmt} and @code{log}.")
+    (license license:expat)))
+
 (define-public go-github-com-miolini-datacounter
   (package
     (name "go-github-com-miolini-datacounter")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index d4696cac75..9f1319d453 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -2161,38 +2161,6 @@ methods can be called and usual operations such as 
indexing or arithmetic can
 be performed.")
       (license license:expat))))
 
-(define-public go-github-com-michiwend-golang-pretty
-    (package
-      (name "go-github-com-michiwend-golang-pretty")
-      (version "0.0.0-20141116172505-8ac61812ea3f")
-      (source
-       (origin
-         (method git-fetch)
-         (uri (git-reference
-               (url
-                "https://github.com/michiwend/golang-pretty";)
-               (commit (go-version->git-ref version))))
-         (file-name (git-file-name name version))
-         (sha256
-          (base32
-           "0rjfms0csjqi91xnddzx3rcrcaikc7xc027617px3kdwdap80ir4"))))
-      (build-system go-build-system)
-      (propagated-inputs
-       (list go-github-com-kr-text))
-      (arguments
-       `(#:tests? #f                    ; Upstream tests seem to be broken.
-         #:import-path "github.com/michiwend/golang-pretty"))
-      (home-page "https://github.com/michiwend/golang-pretty";)
-      (synopsis "Pretty printing for Go values")
-      (description "Package @code{pretty} provides pretty-printing for Go
-values.  This is useful during debugging, to avoid wrapping long output lines
-in the terminal.
-
-It provides a function, @code{Formatter}, that can be used with any function
-that accepts a format string.  It also provides convenience wrappers for
-functions in packages @code{fmt} and @code{log}.")
-      (license license:expat)))
-
 (define-public go-github-com-michiwend-gomusicbrainz
   (let ((commit "0cdeb13f9b24d2c714feb7e3c63d595cf7121d7d")
         (revision "0"))

Reply via email to