mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-15 14:26:33 +01:00
49 lines
1.2 KiB
Nix
49 lines
1.2 KiB
Nix
{
|
|
lib,
|
|
stdenv,
|
|
fetchCrate,
|
|
rustPlatform,
|
|
nix-update-script,
|
|
versionCheckHook,
|
|
}:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "sarif-fmt";
|
|
version = "0.6.6";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-0LyTXyycdIq0FuBTxE9D7FRFfn4iZnDKOt+Rk4P1HwU=";
|
|
};
|
|
|
|
cargoHash = "sha256-UpVZtZ3d0N/uL9+yc1gIO3SQsoqvUBMEDjdl9SDSKd8=";
|
|
|
|
# `test_clippy` (the only test we enable) is broken on Darwin
|
|
# because `--enable-profiler` is not enabled in rustc on Darwin
|
|
# error[E0463]: can't find crate for profiler_builtins
|
|
doCheck = !stdenv.isDarwin;
|
|
|
|
checkFlags = [
|
|
# these tests use nix so...no go
|
|
"--skip=test_clang_tidy"
|
|
"--skip=test_hadolint"
|
|
"--skip=test_shellcheck"
|
|
|
|
# requires files not present in the crates.io tarball
|
|
"--skip=test_clipp"
|
|
];
|
|
|
|
nativeInstallCheckInputs = [ versionCheckHook ];
|
|
doInstallCheck = true;
|
|
|
|
passthru = {
|
|
updateScript = nix-update-script { };
|
|
};
|
|
|
|
meta = {
|
|
description = "A CLI tool to pretty print SARIF diagnostics";
|
|
homepage = "https://psastras.github.io/sarif-rs";
|
|
license = lib.licenses.mit;
|
|
maintainers = with lib.maintainers; [ getchoo ];
|
|
mainProgram = "sarif-fmt";
|
|
};
|
|
}
|