fluffychat: 1.22.1 -> 1.23.0 (#364091)
[NixPkgs.git] / pkgs / by-name / ca / cargo-toml-lint / package.nix
blobb518051e8e85d95f8b8fe2bd896bd5add0ff98ac
2   lib,
3   rustPlatform,
4   fetchCrate,
5 }:
7 rustPlatform.buildRustPackage rec {
8   pname = "cargo-toml-lint";
9   version = "0.1.1";
11   src = fetchCrate {
12     inherit pname version;
13     hash = "sha256-U3y9gnFvkqJmyFqRAUQorJQY0iRzAE9UUXzFmgZIyaM=";
14   };
16   cargoHash = "sha256-ujdekIucqes2Wya4jwTMLstb8JMptbAlqYhgMxfp2gg=";
18   meta = with lib; {
19     description = "Simple linter for Cargo.toml manifests";
20     mainProgram = "cargo-toml-lint";
21     homepage = "https://github.com/fuellabs/cargo-toml-lint";
22     changelog = "https://github.com/fuellabs/cargo-toml-lint/releases/tag/v${version}";
23     license = with licenses; [
24       asl20 # or
25       mit
26     ];
27     maintainers = with maintainers; [
28       mitchmindtree
29       matthiasbeyer
30     ];
31   };