From bb4b8544590662af247f9fc19249275714f4897e Mon Sep 17 00:00:00 2001 From: Mario Rodas Date: Fri, 1 Oct 2021 04:20:00 +0000 Subject: actionlint: init at 1.6.4 --- .../tools/analysis/actionlint/default.nix | 34 ++++++++++++++++++++++ 1 file changed, 34 insertions(+) create mode 100644 pkgs/development/tools/analysis/actionlint/default.nix (limited to 'pkgs/development/tools') diff --git a/pkgs/development/tools/analysis/actionlint/default.nix b/pkgs/development/tools/analysis/actionlint/default.nix new file mode 100644 index 0000000000000..72c5595e28834 --- /dev/null +++ b/pkgs/development/tools/analysis/actionlint/default.nix @@ -0,0 +1,34 @@ +{ lib, buildGoModule, fetchFromGitHub, ronn, installShellFiles }: + +buildGoModule rec { + pname = "actionlint"; + version = "1.6.4"; + + subPackages = [ "cmd/actionlint" ]; + + src = fetchFromGitHub { + owner = "rhysd"; + repo = "actionlint"; + rev = "v${version}"; + sha256 = "1516892wikz3zda0la57s8nbm6459pf4vd123rv09s4nivznbmcx"; + }; + + vendorSha256 = "1i7442n621jmc974b73pfz1gyqw74ilpg1zz16yxqpfh5c958m7n"; + + nativeBuildInputs = [ ronn installShellFiles ]; + + postInstall = '' + ronn --roff man/actionlint.1.ronn + installManPage man/actionlint.1 + ''; + + ldflags = [ "-s" "-w" "-X github.com/rhysd/actionlint.version=${version}" ]; + + meta = with lib; { + homepage = "https://rhysd.github.io/actionlint/"; + description = "Static checker for GitHub Actions workflow files"; + changelog = "https://github.com/rhysd/actionlint/raw/v${version}/CHANGELOG.md"; + license = licenses.mit; + maintainers = [ maintainers.marsam ]; + }; +} -- cgit 1.4.1