Merge pull request #266577 from getchoo/pkgs/hadolint-sarif/init

hadolint-sarif: init at 0.4.2
This commit is contained in:
Peder Bergebakken Sundt 2024-06-09 16:47:59 +02:00 committed by GitHub
commit a42a547c89
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

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;
};
}