guix_mirror_bot pushed a commit to branch master
in repository guix.
commit 676966bd4d56da46bd77ffe6dbf9c5b77ccfbb93
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Wed Jul 23 00:39:13 2025 +0100
gnu: Add go-github-com-awesome-gocui-keybinding.
* gnu/packages/golang-xyz.scm (go-github-com-awesome-gocui-keybinding): New
variable.
Change-Id: I9ecbd5648ddf090cc1787896c8698a043884c926
---
gnu/packages/golang-xyz.scm | 25 +++++++++++++++++++++++++
1 file changed, 25 insertions(+)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index d866f62c1e..5660010398 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -2022,6 +2022,31 @@ strategies, such as fixed delay, backoff delay, and
random delay.")
interfaces.")
(license license:bsd-3)))
+(define-public go-github-com-awesome-gocui-keybinding
+ (package
+ (name "go-github-com-awesome-gocui-keybinding")
+ (version "1.0.0")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/awesome-gocui/keybinding")
+ (commit (string-append "v" version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "0d1nvxs2pd6nc10gm3md2rsd0v33025b8dik1l1iy8klzhiqfd1q"))))
+ (build-system go-build-system)
+ (arguments
+ (list
+ #:tests? #f ;broken tests
+ #:import-path "github.com/awesome-gocui/keybinding"))
+ (propagated-inputs (list go-github-com-awesome-gocui-gocui))
+ (home-page "https://github.com/awesome-gocui/keybinding")
+ (synopsis "Wrapper for parsing gocui keybindings in Golang")
+ (description
+ "This package provides a golang wrapper for parsing gocui keybindings.")
+ (license license:expat)))
+
(define-public go-github-com-axiomhq-hyperloglog
(package
(name "go-github-com-axiomhq-hyperloglog")