about summary refs log tree commit diff
path: root/pkgs/by-name/cl/clang-tidy-sarif/package.nix
blob: 64b8da01af3f34a6547808fac25b9b4c4b3a30ed (plain) (blame)
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
{
  lib,
  fetchFromGitHub,
  rustPlatform,
  clang-tidy-sarif,
  testers,
}:
rustPlatform.buildRustPackage rec {
  pname = "clang-tidy-sarif";
  version = "0.4.2";

  src = fetchFromGitHub {
    owner = "psastras";
    repo = "sarif-rs";
    rev = "clang-tidy-sarif-v${version}";
    hash = "sha256-EzWzDeIeSJ11CVcVyAhMjYQJcKHnieRrFkULc5eXAno=";
  };

  cargoHash = "sha256-NzdgfHRDgLB6sMhBflk9rACEocLP23KlZL22iAfBfh8=";
  cargoBuildFlags = [
    "--package"
    "clang-tidy-sarif"
  ];
  cargoTestFlags = cargoBuildFlags;

  passthru = {
    tests.version = testers.testVersion { package = clang-tidy-sarif; };
  };

  meta = {
    description = "A CLI tool to convert clang-tidy diagnostics into SARIF";
    mainProgram = "clang-tidy-sarif";
    homepage = "https://psastras.github.io/sarif-rs";
    maintainers = with lib.maintainers; [ getchoo ];
    license = lib.licenses.mit;
  };
}