nixpkgs/pkgs/development/tools/rust-code-analysis/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

26 lines
676 B
Nix
Raw Normal View History

{ lib, rustPlatform, fetchCrate }:
2021-09-22 15:20:43 +00:00
rustPlatform.buildRustPackage rec {
pname = "rust-code-analysis";
version = "0.0.25";
2021-09-22 15:20:43 +00:00
src = fetchCrate {
pname = "rust-code-analysis-cli";
inherit version;
hash = "sha256-/Irmtsy1PdRWQ7dTAHLZJ9M0J7oi2IiJyW6HeTIDOCs=";
2021-09-22 15:20:43 +00:00
};
cargoHash = "sha256-axrtFZQOm1/UUBq1CDFkaZCks1mWoLWmfajDfsqSBmY=";
2021-09-22 15:20:43 +00:00
meta = with lib; {
description = "Analyze and collect metrics on source code";
homepage = "https://github.com/mozilla/rust-code-analysis";
license = with licenses; [
mit # grammars
mpl20 # code
];
maintainers = with maintainers; [ figsoda ];
mainProgram = "rust-code-analysis-cli";
};
}