summaryrefslogtreecommitdiff
path: root/gnu
diff options
context:
space:
mode:
authorAllan Adair <allan@adair.no>2025-10-09 13:49:42 +0200
committerSharlatan Hellseher <sharlatanus@gmail.com>2025-10-13 12:12:08 +0100
commit0d3220d7d994f962d1941ac1bb72a1951d9694e7 (patch)
treea3f46a9aa739d7b0866ba3a6e912beaa7111a490 /gnu
parenta539839b983acec97b0b117b9fa9f6eaa835154c (diff)
gnu: go-github-com-awesome-gocui-keybinding: Update 1.0.0-1.8602903.
Update go-github-com-awesome-gocui-keybinding to an unreleased, but latest commit that allows the `dive` program to run without failures with default settings. The previous version in guix would cause the `dive` program to fail with this message: "could not parse keybinding 'q' from request 'ctrl+c,q': unsupported keybinding: KeyQ". * gnu/packages/golang-xyz.scm (go-github-com-awesome-gocui-keybinding): Update 86029037a63f3b47096fcfef02f63e5e5d6d5abd commit. Change-Id: I71c2b0f634bb381b9ae6c7eccaac107fc0a4ef0d Modified-by: Sharlatan Hellseher <sharlatanus@gmail.com> Signed-off-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r--gnu/packages/golang-xyz.scm49
1 files changed, 26 insertions, 23 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 78402fe9a12..1a29f695cd7 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -68,6 +68,7 @@
;;; Copyright © 2025 Tomas Volf <~@wolfsden.cz>
;;; Copyright © 2025 Arthur Rodrigues <arthurhdrodrigues@proton.me>
;;; Copyright © 2025 Tomás Ortín Fernández <quanrong@mailbox.org>
+;;; Copyright © 2025 Allan Adair <allan@adair.no>
;;;
;;; This file is part of GNU Guix.
;;;
@@ -2279,29 +2280,31 @@ 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)))
+ (let ((commit "86029037a63f3b47096fcfef02f63e5e5d6d5abd")
+ (revision "1"))
+ (package
+ (name "go-github-com-awesome-gocui-keybinding")
+ (version (git-version "1.0.0" revision commit))
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/awesome-gocui/keybinding")
+ (commit commit)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1wa7scakwbqfzxc81wxmw1z0c9w3z92vdrxa8mha6w9ykifjdkyz"))))
+ (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