Merge pull request #178461 from SuperSandro2000/act

act: 0.2.26 -> 0.2.28
This commit is contained in:
Mario Rodas 2022-06-22 05:50:37 -05:00 committed by GitHub
commit 2af7600ce6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 4 deletions

View File

@ -2,16 +2,16 @@
buildGoModule rec {
pname = "act";
version = "0.2.26";
version = "0.2.28";
src = fetchFromGitHub {
owner = "nektos";
repo = pname;
rev = "v${version}";
sha256 = "sha256-DBiBJf4hEjn/sJXjAvsiARWz66sDBIz0hFEdCgS8D4g=";
sha256 = "sha256-wHBdmNFi//0nAgqRjTJYE3H+06HrW9l+xLVB97/XrnY=";
};
vendorSha256 = "sha256-5RvFdtEZEQBWvkUKIcV/A+tCSy9V9DJj4HujGQgTxq0=";
vendorSha256 = "sha256-bWNDBoLGiV/eSUW/AE/yzvJN7NYCnT1GjzP3VmDVAg8=";
doCheck = false;

View File

@ -997,7 +997,9 @@ with pkgs;
acpica-tools = callPackage ../tools/system/acpica-tools { };
act = callPackage ../development/tools/misc/act { };
act = callPackage ../development/tools/misc/act {
buildGoModule = buildGo118Module;
};
actdiag = with python3.pkgs; toPythonApplication actdiag;