act: 0.2.23 -> 0.2.24

This commit is contained in:
Sandro Jäckel 2021-08-03 20:07:42 +02:00
parent a63d57e0eb
commit d4e9b89eca
No known key found for this signature in database
GPG key ID: 3AF5A43A3EECC2E5

View file

@ -2,20 +2,20 @@
buildGoModule rec {
pname = "act";
version = "0.2.23";
version = "0.2.24";
src = fetchFromGitHub {
owner = "nektos";
repo = pname;
rev = "v${version}";
sha256 = "sha256-PBhlBWycAYuczfP0D+Gf1pDvrfI9gz3JyGe5FBq782Y=";
sha256 = "sha256-BWSw1yELxLDMUg2LxXuy+N0IRxLQYtVdzny1FGYVXEY=";
};
vendorSha256 = "sha256-dLIsVWN/PjcH0CUYRmn4YaF8Pczf/gaWhD3lulqGiuA=";
doCheck = false;
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
meta = with lib; {
description = "Run your GitHub Actions locally";