blob: 9675279ac2db2aa570dd86d20f57e0618ffdb98b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
|
{
lib,
fetchFromGitHub,
rustPlatform,
hadolint-sarif,
testers,
nix-update-script,
}:
rustPlatform.buildRustPackage rec {
pname = "hadolint-sarif";
version = "0.4.2";
src = fetchFromGitHub {
owner = "psastras";
repo = "sarif-rs";
rev = "${pname}-v${version}";
hash = "sha256-EzWzDeIeSJ11CVcVyAhMjYQJcKHnieRrFkULc5eXAno=";
};
cargoSha256 = "sha256-AMRL1XANyze8bJe3fdgZvBnl/NyuWP13jixixqiPmiw=";
cargoBuildFlags = ["--package" pname];
cargoTestFlags = cargoBuildFlags;
passthru = {
tests.version = testers.testVersion {
package = hadolint-sarif;
};
updateScript = nix-update-script {
extraArgs = ["--regex" "'${pname}-(.*)'"];
};
};
meta = with lib; {
mainProgram = "hadolint-sarif";
description = "A CLI tool to convert hadolint diagnostics into SARIF";
homepage = "https://psastras.github.io/sarif-rs";
maintainers = with maintainers; [getchoo];
license = licenses.mit;
};
}
|