Merge pull request #241009 from mitchmindtree/cargo-toml-lint

cargo-toml-lint: init at 0.1.1

authored by

figsoda and committed by
GitHub
cbf013d7 f2a13301

+25
+24
pkgs/development/tools/rust/cargo-toml-lint/default.nix
··· 1 + { lib 2 + , rustPlatform 3 + , fetchCrate 4 + }: 5 + 6 + rustPlatform.buildRustPackage rec { 7 + pname = "cargo-toml-lint"; 8 + version = "0.1.1"; 9 + 10 + src = fetchCrate { 11 + inherit pname version; 12 + hash = "sha256-U3y9gnFvkqJmyFqRAUQorJQY0iRzAE9UUXzFmgZIyaM="; 13 + }; 14 + 15 + cargoHash = "sha256-ujdekIucqes2Wya4jwTMLstb8JMptbAlqYhgMxfp2gg="; 16 + 17 + meta = with lib; { 18 + description = "A simple linter for Cargo.toml manifests"; 19 + homepage = "https://github.com/fuellabs/cargo-toml-lint"; 20 + changelog = "https://github.com/fuellabs/cargo-toml-lint/releases/tag/v${version}"; 21 + license = with licenses; [ asl20 /* or */ mit ]; 22 + maintainers = with maintainers; [ mitchmindtree ]; 23 + }; 24 + }
+1
pkgs/top-level/all-packages.nix
··· 16804 16804 cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme { }; 16805 16805 cargo-tally = callPackage ../development/tools/rust/cargo-tally { }; 16806 16806 cargo-temp = callPackage ../development/tools/rust/cargo-temp { }; 16807 + cargo-toml-lint = callPackage ../development/tools/rust/cargo-toml-lint { }; 16807 16808 cargo-udeps = callPackage ../development/tools/rust/cargo-udeps { 16808 16809 inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration; 16809 16810 };