guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 4ececfd71289a32683f86f051ea54b3267ec51e3
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Tue Jul 8 08:21:37 2025 +0100

    gnu: Add go-github-com-tj-go-spin.
    
    * gnu/packages/golang-xyz.scm (go-github-com-tj-go-spin): New variable.
    
    Change-Id: I8c7240ce351dd2453d8b1985497c29f19db7f937
---
 gnu/packages/golang-xyz.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index b398d350f1..824d0c7811 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -17389,6 +17389,28 @@ flushing entries at a given size or interval, useful 
for cases such as
 batching log events.")
     (license license:expat)))
 
+(define-public go-github-com-tj-go-spin
+  (package
+    (name "go-github-com-tj-go-spin")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/tj/go-spin";)
+             (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "11xr67991m5pwsy1dira3iwd0sr55vmn1cyjwmlqziw4bwpym64s"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/tj/go-spin"))
+    (home-page "https://github.com/tj/go-spin";)
+    (synopsis "Terminal spinner package for Golang")
+    (description "This package provides a little terminal spinner library.")
+    (license license:expat)))
+
 (define-public go-github-com-tklauser-go-sysconf
   (package
     (name "go-github-com-tklauser-go-sysconf")

Reply via email to