sharlatan pushed a commit to branch go-team
in repository guix.
commit de7e62fa43a6f195402cfa780aba099fb506747c
Author: Sharlatan Hellseher <[email protected]>
AuthorDate: Thu Jan 2 23:01:01 2025 +0000
gnu: go-github-com-rivo-tview: Move to golang-xyz.
* gnu/packages/golang.scm (go-github-com-rivo-tview): Move from here ...
* gnu/packages/golang-xyz.scm: ... to here.
Change-Id: If3a3daa2a26594c1a2d2a336a22e85a2c62a0011
---
gnu/packages/golang-xyz.scm | 28 ++++++++++++++++++++++++++++
gnu/packages/golang.scm | 28 ----------------------------
2 files changed, 28 insertions(+), 28 deletions(-)
diff --git a/gnu/packages/golang-xyz.scm b/gnu/packages/golang-xyz.scm
index 14ef3249f6..2769b80b28 100644
--- a/gnu/packages/golang-xyz.scm
+++ b/gnu/packages/golang-xyz.scm
@@ -10814,6 +10814,34 @@ routines querying a database but without sending too
much queries in order to
not overload the given database.")
(license license:expat)))
+(define-public go-github-com-rivo-tview
+ (package
+ (name "go-github-com-rivo-tview")
+ (version "0.0.0-20241227133733-17b7edb88c57")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/rivo/tview")
+ (commit (go-version->git-ref version))))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32 "1w59vyvs8k5mzl7k39zpwcwwdgam2pbz0rnrfnnjgvkld1rh81dc"))))
+ (build-system go-build-system)
+ (arguments
+ (list #:import-path "github.com/rivo/tview"))
+ (propagated-inputs
+ (list go-github-com-gdamore-tcell-v2
+ go-github-com-lucasb-eyer-go-colorful
+ go-github-com-rivo-uniseg))
+ (home-page "https://github.com/rivo/tview")
+ (synopsis "Rich Interactive Widgets for Terminal UIs")
+ (description
+ "The tview package implements rich widgets for terminal based user
+interfaces. The widgets provided with this package are useful for data
+exploration and data entry.")
+ (license license:expat)))
+
(define-public go-github-com-rivo-uniseg
(package
(name "go-github-com-rivo-uniseg")
diff --git a/gnu/packages/golang.scm b/gnu/packages/golang.scm
index 3bcb28d85f..59b3c39cd7 100644
--- a/gnu/packages/golang.scm
+++ b/gnu/packages/golang.scm
@@ -3382,34 +3382,6 @@ over strings.")
Go library.")
(license license:expat)))
-(define-public go-github-com-rivo-tview
- (package
- (name "go-github-com-rivo-tview")
- (version "0.0.0-20241227133733-17b7edb88c57")
- (source (origin
- (method git-fetch)
- (uri (git-reference
- (url "https://github.com/rivo/tview")
- (commit (go-version->git-ref version))))
- (file-name (git-file-name name version))
- (sha256
- (base32
- "1w59vyvs8k5mzl7k39zpwcwwdgam2pbz0rnrfnnjgvkld1rh81dc"))))
- (build-system go-build-system)
- (arguments
- (list #:import-path "github.com/rivo/tview"))
- (propagated-inputs
- (list go-github-com-gdamore-tcell-v2
- go-github-com-lucasb-eyer-go-colorful
- go-github-com-rivo-uniseg))
- (home-page "https://github.com/rivo/tview")
- (synopsis "Rich Interactive Widgets for Terminal UIs")
- (description
- "The tview package implements rich widgets for terminal based user
-interfaces. The widgets provided with this package are useful for data
-exploration and data entry.")
- (license license:expat)))
-
(define-public go-github-com-xo-terminfo
(package
(name "go-github-com-xo-terminfo")