act: init at 0.1.3

This commit is contained in:
Oleksii Filonenko 2019-12-26 16:52:26 +02:00 committed by Jon
parent 660345d9fe
commit af57b17404
2 changed files with 24 additions and 0 deletions

View 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 ];
};
}

View File

@ -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 { };