act: init at 0.1.3
This commit is contained in:
parent
660345d9fe
commit
af57b17404
22
pkgs/development/tools/misc/act/default.nix
Normal file
22
pkgs/development/tools/misc/act/default.nix
Normal file
@ -0,0 +1,22 @@
|
||||
{ lib, fetchFromGitHub, buildGoModule }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "act";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "nektos";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "1y1bvk93dzsxwjakmgpb5qyy3lqng7cdabi64b555c1z6b42mf58";
|
||||
};
|
||||
|
||||
modSha256 = "00d0wjnr5y3bl95lma8sdwvqqs7fd0k43azawp1kb29kqnrlismg";
|
||||
|
||||
meta = with lib; {
|
||||
description = "Run your GitHub Actions locally";
|
||||
homepage = "https://circleci.com/";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
};
|
||||
}
|
@ -508,6 +508,8 @@ in
|
||||
|
||||
acpica-tools = callPackage ../tools/system/acpica-tools { };
|
||||
|
||||
act = callPackage ../development/tools/misc/act {};
|
||||
|
||||
actdiag = with python3.pkgs; toPythonApplication actdiag;
|
||||
|
||||
actkbd = callPackage ../tools/system/actkbd { };
|
||||
|
Loading…
Reference in New Issue
Block a user