diff options
author | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-11-28 23:49:04 +0000 |
---|---|---|
committer | Artyom V. Poptsov <poptsov.artyom@gmail.com> | 2024-12-01 10:27:40 +0300 |
commit | 689d2ac36c56c1573cd7418efe7676988f118024 (patch) | |
tree | b39cde276ff7e225ce989e2e22a04cc1bbb528ff /gnu | |
parent | 9874cc55817c9147fc55ad4b938914b7b836004c (diff) | |
download | guix-689d2ac36c56c1573cd7418efe7676988f118024.tar.gz guix-689d2ac36c56c1573cd7418efe7676988f118024.zip |
gnu: Add go-github-com-charmbracelet-bubbles.
* gnu/packages/golang-xyz.scm (go-github-com-charmbracelet-bubbles): New variable.
Change-Id: I090db91509590ca9a8cab1a209d00bcc12b524e7
Reviewed-by: Sharlatan Hellseher <sharlatanus@gmail.com>
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/golang-xyz.scm | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm index e7979387e3..db11b2b542 100644 --- a/gnu/packages/golang-xyz.scm +++ b/gnu/packages/golang-xyz.scm @@ -1582,6 +1582,43 @@ tools.") (modify-inputs (package-propagated-inputs go-github-com-cheggaaa-pb) (append go-github-com-vividcortex-ewma))))) +(define-public go-github-com-charmbracelet-bubbles + (package + (name "go-github-com-charmbracelet-bubbles") + (version "0.20.0") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://github.com/charmbracelet/bubbles") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "1qdcln01bq9lk6r33b8p5d5x850wgd8ddq57n4bg3xn76z2fd657")))) + (build-system go-build-system) + (arguments + (list #:import-path "github.com/charmbracelet/bubbles")) + (propagated-inputs + (list go-github-com-atotto-clipboard + go-github-com-charmbracelet-bubbletea + go-github-com-charmbracelet-harmonica + go-github-com-charmbracelet-lipgloss + go-github-com-charmbracelet-x-ansi + go-github-com-charmbracelet-x-exp-golden + go-github-com-dustin-go-humanize + go-github-com-lucasb-eyer-go-colorful + go-github-com-makenowjust-heredoc + go-github-com-mattn-go-runewidth + go-github-com-muesli-termenv + go-github-com-rivo-uniseg + go-github-com-sahilm-fuzzy)) + (home-page "https://github.com/charmbracelet/bubbles") + (synopsis "TUI components for Bubble Tea library") + (description + "@code{bubbles} is a library that provide components for +@@url{https://github.com/charmbracelet/bubbletea, Bubble Tea} applications.") + (license license:expat))) + (define-public go-github-com-charmbracelet-lipgloss (package (name "go-github-com-charmbracelet-lipgloss") |