diff options
author | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-23 00:36:42 +0100 |
---|---|---|
committer | Sharlatan Hellseher <sharlatanus@gmail.com> | 2025-07-31 22:52:11 +0100 |
commit | 299277dc0a123270e9ea794db95757345b0d87ed (patch) | |
tree | af8ab66308e490726b9dae824ac278a049110fb2 | |
parent | f9da2c6fbd5f4a6726f5a1da0d6f6d958b8633be (diff) |
gnu: Add go-github-com-awesome-gocui-gocui.
* gnu/packages/golang-xyz.scm (go-github-com-awesome-gocui-gocui): New variable.
Change-Id: Ib6a46b515b670ca0e4ccdc45c02c7897645a9659
-rw-r--r-- | gnu/packages/golang-xyz.scm | 27 |
1 files changed, 27 insertions, 0 deletions
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") |