summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSharlatan Hellseher <sharlatanus@gmail.com>2025-07-23 00:39:13 +0100
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-07-31 22:52:11 +0100
commit676966bd4d56da46bd77ffe6dbf9c5b77ccfbb93 (patch)
tree1c092ac1d9de06f0db4db52032744e7175b25912
parent299277dc0a123270e9ea794db95757345b0d87ed (diff)
gnu: Add go-github-com-awesome-gocui-keybinding.
* gnu/packages/golang-xyz.scm (go-github-com-awesome-gocui-keybinding): New variable. Change-Id: I9ecbd5648ddf090cc1787896c8698a043884c926
-rw-r--r--gnu/packages/golang-xyz.scm25
1 files changed, 25 insertions, 0 deletions
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")