Skip to content

Commit

Permalink
Merge pull request #266575 from getchoo/pkgs/shellcheck-sarif/init
Browse files Browse the repository at this point in the history
shellcheck-sarif: init at 0.4.2
  • Loading branch information
Aleksanaa authored May 17, 2024
2 parents 9c4874a + e26bfee commit d769131
Showing 1 changed file with 37 additions and 0 deletions.
37 changes: 37 additions & 0 deletions pkgs/by-name/sh/shellcheck-sarif/package.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}

0 comments on commit d769131

Please sign in to comment.