diff options
| author | seth <[email protected]> | 2024-05-22 04:06:24 -0400 |
|---|---|---|
| committer | seth <[email protected]> | 2024-05-22 16:21:31 -0600 |
| commit | 2a936b25d71986b1044645179b2fa385f43c2bc2 (patch) | |
| tree | e9812277222ea999fdd1dcf97e6e110339b61b0f /pkgs/clang-tidy-sarif.nix | |
| parent | bf4a600a9d4b64e5f5afefc69ae67bc688734610 (diff) | |
treewide: enforce <dir>/package.nix
Diffstat (limited to 'pkgs/clang-tidy-sarif.nix')
| -rw-r--r-- | pkgs/clang-tidy-sarif.nix | 36 |
1 files changed, 0 insertions, 36 deletions
diff --git a/pkgs/clang-tidy-sarif.nix b/pkgs/clang-tidy-sarif.nix deleted file mode 100644 index 12dfe55..0000000 --- a/pkgs/clang-tidy-sarif.nix +++ /dev/null @@ -1,36 +0,0 @@ -{ - 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 = "${pname}-v${version}"; - hash = "sha256-EzWzDeIeSJ11CVcVyAhMjYQJcKHnieRrFkULc5eXAno="; - }; - - cargoSha256 = "sha256-NzdgfHRDgLB6sMhBflk9rACEocLP23KlZL22iAfBfh8="; - cargoBuildFlags = ["--package" pname]; - cargoTestFlags = cargoBuildFlags; - - passthru = { - tests.version = testers.testVersion { - package = clang-tidy-sarif; - }; - }; - - meta = with lib; { - mainProgram = "clang-tidy-sarif"; - description = "A CLI tool to convert clang-tidy diagnostics into SARIF"; - homepage = "https://psastras.github.io/sarif-rs"; - maintainers = with maintainers; [getchoo]; - license = licenses.mit; - }; -} |
