fork
Configure Feed
Select the types of activity you want to include in your feed.
lol
fork
Configure Feed
Select the types of activity you want to include in your feed.
1{ lib, fetchFromGitHub, buildGoModule }:
2
3buildGoModule rec {
4 pname = "act";
5 version = "0.2.33";
6
7 src = fetchFromGitHub {
8 owner = "nektos";
9 repo = pname;
10 rev = "v${version}";
11 sha256 = "sha256-FNOZA4sb0IlKkLiE+uPOE5KJXlU7XbtHlmPJUMJbGNE=";
12 };
13
14 vendorSha256 = "sha256-9ziHGZWHeYk0sxOxIFCnrLd1iqT9orgwE7eixvSMhlc=";
15
16 doCheck = false;
17
18 ldflags = [ "-s" "-w" "-X main.version=${version}" ];
19
20 meta = with lib; {
21 description = "Run your GitHub Actions locally";
22 homepage = "https://github.com/nektos/act";
23 changelog = "https://github.com/nektos/act/releases/tag/v${version}";
24 license = licenses.mit;
25 maintainers = with maintainers; [ Br1ght0ne SuperSandro2000 ];
26 };
27}