From 460cee509562044f6373ef86b98230fa28dd7a90 Mon Sep 17 00:00:00 2001 From: David Thompson Date: Mon, 2 Jun 2025 14:20:01 +0200 Subject: [PATCH] gnu: Add go-code-gitea-io-actions-proto-go-runner. MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * gnu/packages/golang-vcs.scm (go-code-gitea-io-actions-proto-go-runner): New variable. Co-authored-by: Ludovic Courtès Change-Id: Id4a25c9d96cf9505efa57ca1c377eb34cb49ee7f --- gnu/packages/golang-vcs.scm | 26 ++++++++++++++++++++++++++ 1 file changed, 26 insertions(+) diff --git a/gnu/packages/golang-vcs.scm b/gnu/packages/golang-vcs.scm index d645f78caa3..2c137ff68eb 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-runner + (package + (name "go-code-gitea-io-actions-proto-go-runner") + (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/runner/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 "Action runner for Gitea") + (description + "This package provides an Action runner for the Gitea forge.") + (license license:expat))) + (define-public go-github-com-git-lfs-pktline (let ((commit "ca444d533ef1e474d0aab99cdbeed9b048d65241") (revision "1"))