diff options
author | David Thompson <davet@gnu.org> | 2025-06-02 14:21:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2025-06-17 15:17:19 +0200 |
commit | 4741fe4be7b7248f190b6dadb6831d0e51a4fc70 (patch) | |
tree | 66d9592e2b3d4305021cc15c3b10fd951b36fa4c | |
parent | 460cee509562044f6373ef86b98230fa28dd7a90 (diff) |
gnu: Add go-code-gitea-io-actions-proto-go-ping.
* gnu/packages/golang-vcs.scm (go-code-gitea-io-actions-proto-go-ping): New variable.
Co-authored-by: Ludovic Courtès <ludo@gnu.org>
Change-Id: I21b4b5cb000b09413f6c5534ab06278c598581ef
-rw-r--r-- | gnu/packages/golang-vcs.scm | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm index 2c137ff68e..6ee5740abe 100644 --- a/gnu/packages/golang-vcs.scm +++ b/gnu/packages/golang-vcs.scm @@ -46,6 +46,32 @@ ;;; Libraries: ;;; +(define-public go-code-gitea-io-actions-proto-go-ping + (package + (name "go-code-gitea-io-actions-proto-go-ping") + (version "0.4.1") + (source + (origin + (method git-fetch) + (uri (git-reference + (url "https://gitea.com/gitea/actions-proto-go") + (commit (string-append "v" version)))) + (file-name (git-file-name name version)) + (sha256 + (base32 "0gdrsr7kx20nhp1r54xyrq4gcwxvyzv636bzmsrchikffhq773b6")))) + (build-system go-build-system) + (arguments + (list + #:import-path "code.gitea.io/actions-proto-go/ping/v1" + #:unpack-path "code.gitea.io/actions-proto-go")) + (propagated-inputs (list go-google-golang-org-protobuf + go-connectrpc-com-connect)) + (home-page "https://code.gitea.io/actions-proto-go") + (synopsis "Helper for the Gitea Action runner") + (description + "This package provides a helper for the Gitea Action runer.") + (license license:expat))) + (define-public go-code-gitea-io-actions-proto-go-runner (package (name "go-code-gitea-io-actions-proto-go-runner") |