nixpkgs/pkgs/tools/misc/gh-actions-cache/default.nix

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

35 lines
763 B
Nix
Raw Normal View History

2023-01-24 22:12:18 +00:00
{ lib
, fetchFromGitHub
, buildGoModule
}:
buildGoModule rec {
pname = "gh-actions-cache";
2023-10-31 13:34:42 +00:00
version = "1.0.4";
2023-01-24 22:12:18 +00:00
src = fetchFromGitHub {
owner = "actions";
repo = "gh-actions-cache";
rev = "v${version}";
2023-10-31 13:34:42 +00:00
hash = "sha256-GVha3xxLTBTiKfAjGb2q9btsGYzWQivGLyZ4Gg0s/N0=";
2023-01-24 22:12:18 +00:00
};
2023-10-31 13:34:42 +00:00
vendorHash = "sha256-4/Zt+ga3abEPtR0FjWIsDpOiG1bfVtVuLuXP8aHbzqk=";
2023-01-24 22:12:18 +00:00
ldflags = [
"-s"
"-w"
];
# Tests need network
doCheck = false;
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 ];
};
}