depot/third_party/nixpkgs/pkgs/development/tools/continuous-integration/gitea-actions-runner/default.nix
Default email dae973cb59 Project import generated by Copybara.
GitOrigin-RevId: c90c4025bb6e0c4eaf438128a3b2640314b1c58d
2023-03-08 18:32:21 +02:00

24 lines
681 B
Nix

{ lib, fetchFromGitea, buildGoModule }:
buildGoModule rec {
pname = "gitea-actions-runner";
version = "unstable-2023-02-08";
src = fetchFromGitea {
domain = "gitea.com";
owner = "gitea";
repo = "act_runner";
rev = "990cf93c7136669408eb1832cd05df3ad4dd81b3";
sha256 = "1ysp7g199dzh1zpxxhki88pn96qghln7a5g8zfjip9173q1rgiyb";
};
vendorSha256 = "0a3q7rsk37dc6v3vnqaywkimaqvyjmkrwljhcjcnswsdfcgng62b";
meta = with lib; {
mainProgram = "act_runner";
maintainers = with maintainers; [ techknowlogick ];
license = licenses.mit;
homepage = "https://gitea.com/gitea/act_runner";
description = "A runner for Gitea based on act";
};
}