guix_mirror_bot pushed a commit to branch master
in repository guix.

commit 299277dc0a123270e9ea794db95757345b0d87ed
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 23 00:36:42 2025 +0100

    gnu: Add go-github-com-awesome-gocui-gocui.
    
    * gnu/packages/golang-xyz.scm (go-github-com-awesome-gocui-gocui): New 
variable.
    
    Change-Id: Ib6a46b515b670ca0e4ccdc45c02c7897645a9659
---
 gnu/packages/golang-xyz.scm | 27 +++++++++++++++++++++++++++
 1 file changed, 27 insertions(+)

diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 89e588a812..d866f62c1e 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -1995,6 +1995,33 @@ strategies, such as fixed delay, backoff delay, and 
random delay.")
          (package-arguments go-github-com-avast-retry-go)
        ((#:import-path _) "github.com/avast/retry-go/v4")))))
 
+(define-public go-github-com-awesome-gocui-gocui
+  (package
+    (name "go-github-com-awesome-gocui-gocui")
+    (version "1.1.0")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+              (url "https://github.com/awesome-gocui/gocui";)
+              (commit (string-append "v" version))))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "082ziwxj239nxcclv54d783933s6c5ks592mq3ilcvg1vfyfkjz8"))))
+    (build-system go-build-system)
+    (arguments
+     (list
+      #:import-path "github.com/awesome-gocui/gocui"))
+    (propagated-inputs
+     (list go-github-com-gdamore-tcell-v2
+           go-github-com-mattn-go-runewidth))
+    (home-page "https://github.com/awesome-gocui/gocui";)
+    (synopsis "Console User Interface in Golang")
+    (description
+     "This package implements a functionality to create console user
+interfaces.")
+    (license license:bsd-3)))
+
 (define-public go-github-com-axiomhq-hyperloglog
   (package
     (name "go-github-com-axiomhq-hyperloglog")

Reply via email to