36 lines
987 B
Nix
36 lines
987 B
Nix
{ lib, buildGoModule, fetchFromGitHub, ronn, installShellFiles }:
|
|
|
|
buildGoModule rec {
|
|
pname = "actionlint";
|
|
version = "1.6.6";
|
|
|
|
subPackages = [ "cmd/actionlint" ];
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "rhysd";
|
|
repo = "actionlint";
|
|
rev = "v${version}";
|
|
sha256 = "17c6952cjdpbl70lnn34pl3njrvpqmdbgnrm1q69kx94bni1slnz";
|
|
};
|
|
|
|
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 ];
|
|
mainProgram = "actionlint";
|
|
};
|
|
}
|