+3
-3
pkgs/development/tools/misc/act/default.nix
+3
-3
pkgs/development/tools/misc/act/default.nix
···
2
2
3
3
buildGoModule rec {
4
4
pname = "act";
5
-
version = "0.2.23";
5
+
version = "0.2.24";
6
6
7
7
src = fetchFromGitHub {
8
8
owner = "nektos";
9
9
repo = pname;
10
10
rev = "v${version}";
11
-
sha256 = "sha256-PBhlBWycAYuczfP0D+Gf1pDvrfI9gz3JyGe5FBq782Y=";
11
+
sha256 = "sha256-BWSw1yELxLDMUg2LxXuy+N0IRxLQYtVdzny1FGYVXEY=";
12
12
};
13
13
14
14
vendorSha256 = "sha256-dLIsVWN/PjcH0CUYRmn4YaF8Pczf/gaWhD3lulqGiuA=";
15
15
16
16
doCheck = false;
17
17
18
-
buildFlagsArray = [ "-ldflags=-s -w -X main.version=${version}" ];
18
+
ldflags = [ "-s" "-w" "-X main.version=${version}" ];
19
19
20
20
meta = with lib; {
21
21
description = "Run your GitHub Actions locally";