hadolint-sarif: init at 0.4.2

This commit is contained in:
seth 2023-11-09 21:50:19 -05:00
parent 2251d8ffde
commit 9cb732179e
No known key found for this signature in database
GPG Key ID: D31BD0D494BBEE86

View File

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