Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
38 lines
926 B
Nix
38 lines
926 B
Nix
{
|
|
lib,
|
|
fetchFromGitHub,
|
|
buildGoModule,
|
|
}:
|
|
|
|
buildGoModule rec {
|
|
pname = "gh-actions-cache";
|
|
version = "1.0.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "actions";
|
|
repo = "gh-actions-cache";
|
|
rev = "v${version}";
|
|
hash = "sha256-GVha3xxLTBTiKfAjGb2q9btsGYzWQivGLyZ4Gg0s/N0=";
|
|
};
|
|
|
|
vendorHash = "sha256-4/Zt+ga3abEPtR0FjWIsDpOiG1bfVtVuLuXP8aHbzqk=";
|
|
|
|
ldflags = [
|
|
"-s"
|
|
"-w"
|
|
];
|
|
|
|
# Needed for tests.
|
|
# https://github.com/actions/gh-actions-cache/issues/53#issuecomment-1464954495
|
|
env.GH_TOKEN = "dummy-token-to-facilitate-rest-client";
|
|
|
|
meta = {
|
|
description = "gh extension to manage GitHub Actions caches";
|
|
homepage = "https://github.com/actions/gh-actions-cache";
|
|
changelog = "https://github.com/actions/gh-actions-cache/releases/tag/${src.rev}";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ amesgen ];
|
|
mainProgram = "gh-actions-cache";
|
|
};
|
|
}
|