From 1dcc0e4b2db3859b31bc43750567119357791183 Mon Sep 17 00:00:00 2001 From: Peter Tillemans Date: Mon, 26 Aug 2024 19:53:30 +0200 Subject: [PATCH] fix gitea-tea; --- snamellit/packages/gitea-tea-bin.scm | 49 ++++++++++++++-------------- 1 file changed, 25 insertions(+), 24 deletions(-) diff --git a/snamellit/packages/gitea-tea-bin.scm b/snamellit/packages/gitea-tea-bin.scm index c68d5fd..ce4918b 100644 --- a/snamellit/packages/gitea-tea-bin.scm +++ b/snamellit/packages/gitea-tea-bin.scm @@ -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