1
Fork 0
mirror of https://https.git.savannah.gnu.org/git/guix.git/ synced 2025-07-13 10:30:43 +02:00

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
This commit is contained in:
Sharlatan Hellseher 2025-01-02 23:01:01 +00:00
parent 3d1843dc27
commit 09f03a4adb
No known key found for this signature in database
GPG key ID: 76D727BFF62CD2B5
2 changed files with 28 additions and 28 deletions

View file

@ -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")

View file

@ -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")