evcc: 0.131.4 -> 0.131.5
[NixPkgs.git] / pkgs / by-name / ca / cargo-toml-lint / package.nix
bloba32f6e4bc695600a23282fd9d1a1092675584a06
1 { lib
2 , rustPlatform
3 , fetchCrate
4 }:
6 rustPlatform.buildRustPackage rec {
7   pname = "cargo-toml-lint";
8   version = "0.1.1";
10   src = fetchCrate {
11     inherit pname version;
12     hash = "sha256-U3y9gnFvkqJmyFqRAUQorJQY0iRzAE9UUXzFmgZIyaM=";
13   };
15   cargoHash = "sha256-ujdekIucqes2Wya4jwTMLstb8JMptbAlqYhgMxfp2gg=";
17   meta = with lib; {
18     description = "Simple linter for Cargo.toml manifests";
19     mainProgram = "cargo-toml-lint";
20     homepage = "https://github.com/fuellabs/cargo-toml-lint";
21     changelog = "https://github.com/fuellabs/cargo-toml-lint/releases/tag/v${version}";
22     license = with licenses; [ asl20 /* or */ mit ];
23     maintainers = with maintainers; [ mitchmindtree matthiasbeyer ];
24   };