fix gitea-tea;
This commit is contained in:
parent
b6ffdc078c
commit
1dcc0e4b2d
1 changed files with 25 additions and 24 deletions
|
@ -17,30 +17,31 @@
|
|||
(make-libstdc++ gcc))
|
||||
|
||||
(define-public tea-bin
|
||||
(package
|
||||
(name "gitea-tea-bin")
|
||||
(version "0.9.2")
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://gitea.com/gitea/tea/releases/download/v"
|
||||
version
|
||||
"/tea-"
|
||||
version
|
||||
"-linux-amd64"))
|
||||
(sha256
|
||||
(base32
|
||||
"1vksgxas32n6ic89c9jixjlpy6586fxddzqgc56ip009vjicgqfy"))))
|
||||
(build-system binary-build-system)
|
||||
(arguments
|
||||
`(
|
||||
#:install-plan
|
||||
`(("tea*" "/bin/"))))
|
||||
(synopsis "A simple terminal UI for gitea/forgejo commands")
|
||||
(description "A command line client to manage repos, issue, merge requests et al on
|
||||
(let ((tea-version "0.9.2"))
|
||||
(package
|
||||
(name "gitea-tea-bin")
|
||||
(version tea-version)
|
||||
(source
|
||||
(origin
|
||||
(method url-fetch)
|
||||
(uri (string-append
|
||||
"https://gitea.com/gitea/tea/releases/download/v"
|
||||
version
|
||||
"/tea-"
|
||||
version
|
||||
"-linux-amd64"))
|
||||
(sha256
|
||||
(base32
|
||||
"0kfm4x98p8hk0gv6q0y7s5i3xd8rxmh4k1yz47qw1qqrlvwws45y"))))
|
||||
(build-system binary-build-system)
|
||||
(arguments
|
||||
`(
|
||||
#:install-plan
|
||||
`((,(string-append "tea-0.9.2" "-linux-amd64") "/bin/"))))
|
||||
(synopsis "A simple terminal UI for gitea/forgejo commands")
|
||||
(description "A command line client to manage repos, issue, merge requests et al on
|
||||
gitea and forgejo forges.")
|
||||
(home-page "https://tea.sh/")
|
||||
(license license:expat)))
|
||||
(home-page "https://tea.sh/")
|
||||
(license license:expat))))
|
||||
|
||||
tea-bin
|
||||
|
|
Loading…
Reference in a new issue