Merge pull request #268619 from tweag/lib-descriptions
[NixPkgs.git] / pkgs / development / tools / rust-code-analysis / default.nix
blob7427a8bd76d6484a144e4273e901b5025a81f74e
1 { lib, rustPlatform, fetchCrate }:
3 rustPlatform.buildRustPackage rec {
4   pname = "rust-code-analysis";
5   version = "0.0.25";
7   src = fetchCrate {
8     pname = "rust-code-analysis-cli";
9     inherit version;
10     hash = "sha256-/Irmtsy1PdRWQ7dTAHLZJ9M0J7oi2IiJyW6HeTIDOCs=";
11   };
13   cargoHash = "sha256-axrtFZQOm1/UUBq1CDFkaZCks1mWoLWmfajDfsqSBmY=";
15   meta = with lib; {
16     description = "Analyze and collect metrics on source code";
17     homepage = "https://github.com/mozilla/rust-code-analysis";
18     license = with licenses; [
19       mit # grammars
20       mpl20 # code
21     ];
22     maintainers = with maintainers; [ figsoda ];
23     mainProgram = "rust-code-analysis-cli";
24   };