Merge pull request #266575 from getchoo/pkgs/shellcheck-sarif/init

shellcheck-sarif: init at 0.4.2
This commit is contained in:
Aleksana 2024-05-18 01:55:49 +08:00 committed by GitHub
commit d769131c27
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -0,0 +1,37 @@
{
lib,
fetchFromGitHub,
rustPlatform,
shellcheck-sarif,
testers,
}:
rustPlatform.buildRustPackage rec {
pname = "shellcheck-sarif";
version = "0.4.2";
src = fetchFromGitHub {
owner = "psastras";
repo = "sarif-rs";
rev = "${pname}-v${version}";
hash = "sha256-EzWzDeIeSJ11CVcVyAhMjYQJcKHnieRrFkULc5eXAno=";
};
cargoHash = "sha256-JuE/Z0qrS/3BRlb0jTGDfV0TYk74Q75X1wv/IERxqeQ=";
cargoBuildFlags = [
"--package"
pname
];
cargoTestFlags = cargoBuildFlags;
passthru = {
tests.version = testers.testVersion { package = shellcheck-sarif; };
};
meta = {
description = "A CLI tool to convert shellcheck diagnostics into SARIF";
homepage = "https://psastras.github.io/sarif-rs";
mainProgram = "shellcheck-sarif";
maintainers = with lib.maintainers; [ getchoo ];
license = lib.licenses.mit;
};
}