diff options
author | Guix Together <jgart@dismail.de> | 2021-12-18 15:27:50 -0500 |
---|---|---|
committer | Nicolas Goaziou <mail@nicolasgoaziou.fr> | 2022-01-12 22:55:05 +0100 |
commit | 5f0ef33b60e2ba29c69a21c63edf32e9f4cedde4 (patch) | |
tree | e2659c42023a9e38bb88a4b09abe4d83a2b7ee30 /gnu | |
parent | 269f1b5a6a2044b968ec3e34e45f16d0aed12391 (diff) | |
download | guix-5f0ef33b60e2ba29c69a21c63edf32e9f4cedde4.tar.gz guix-5f0ef33b60e2ba29c69a21c63edf32e9f4cedde4.zip |
gnu: Add go-github-com-charmbracelet-bubbletea.
* gnu/packages/golang.scm (go-github-com-charmbracelet-bubbletea): New variable.
Co-authored-by: jgart <jgart@dismail.de>
Co-authored-by: Gábor Boskovits <boskovits@gmail.com>
Co-authored-by: Jorge Acereda <jacereda@gmail.com>
Signed-off-by: Nicolas Goaziou <mail@nicolasgoaziou.fr>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang.scm | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm index 4e5695f62e..2ef17616e9 100644 --- a/gnu/packages/golang.scm +++ b/gnu/packages/golang.scm @@ -8845,6 +8845,45 @@ averages.") string.") (license license:expat))) + +(define-public go-github-com-charmbracelet-bubbletea + (package + (name "go-github-com-charmbracelet-bubbletea") + (version "0.13.2") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/charmbracelet/bubbletea") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 + "1105cggi5fwqx69m0vrhgwx6kaw82w4ahn58sj0a81603c4yvrk0")))) + (build-system go-build-system) + (arguments + `(#:import-path "github.com/charmbracelet/bubbletea")) + (propagated-inputs + `(("github.com/mattn/go-isatty" ,go-github-com-mattn-go-isatty) + ("github.com/muesli/termenv" ,go-github-com-muesli-termenv) + ("github.com/mattn/go-runewidth" ,go-github.com-mattn-go-runewidth) + ("go-github-com-muesli-reflow-indent" ,go-github-com-muesli-reflow-indent) + ("go-github-com-muesli-reflow-ansi" ,go-github-com-muesli-reflow-ansi) + ("go-golang-org-colorful" ,go-golang-org-colorful) + ("github.com/containerd/console" ,go-github-com-containerd-console) + ("go-github-com-muesli-reflow-truncate" ,go-github-com-muesli-reflow-truncate) + ("go-golang-org-x-crypto" ,go-golang-org-x-crypto) + ("go-golang-org-x-sys" ,go-golang-org-x-sys) + ("go-golang-org-x-term" ,go-golang-org-x-term) + ("github.com/mattn/go-isatty" ,go-github-com-mattn-go-isatty))) + (home-page "https://github.com/charmbracelet/bubbletea") + (synopsis "Powerful little TUI framework") + (description + "Bubble Tea is a Go framework based on The Elm Architecture. It is +well-suited for simple and complex terminal applications, either inline, +full-window, or a mix of both.") + (license license:asl2.0))) + (define-public go-github-com-arceliar-ironwood (package (name "go-github-com-arceliar-ironwood") |