nixpkgs/pkgs/by-name/gi/gitea-actions-runner/package.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

43 lines
983 B
Nix
Raw Normal View History

2024-09-24 19:17:48 +00:00
{
lib,
fetchFromGitea,
buildGoModule,
testers,
gitea-actions-runner,
}:
2023-02-09 04:29:55 +00:00
buildGoModule rec {
pname = "gitea-actions-runner";
2024-05-09 14:34:56 +00:00
version = "0.2.10";
2023-02-09 04:29:55 +00:00
src = fetchFromGitea {
domain = "gitea.com";
owner = "gitea";
repo = "act_runner";
rev = "v${version}";
2024-05-09 14:34:56 +00:00
hash = "sha256-YRWFBMHw9Fcmzkmglh2I1kXJkAAivqvCBcenLTjE/bI=";
2023-02-09 04:29:55 +00:00
};
2024-05-09 14:34:56 +00:00
vendorHash = "sha256-8sdSQhg9DnRLgghDZzWrUMM4vjinhCgu3dTKU7MBVQU=";
ldflags = [
"-s"
"-w"
"-X gitea.com/gitea/act_runner/internal/pkg/ver.version=v${version}"
];
2023-02-09 04:29:55 +00:00
passthru.tests.version = testers.testVersion {
package = gitea-actions-runner;
version = "v${version}";
};
2023-02-09 04:29:55 +00:00
meta = with lib; {
mainProgram = "act_runner";
maintainers = with maintainers; [ techknowlogick ];
license = licenses.mit;
changelog = "https://gitea.com/gitea/act_runner/releases/tag/v${version}";
2023-02-09 04:29:55 +00:00
homepage = "https://gitea.com/gitea/act_runner";
description = "Runner for Gitea based on act";
};
}