mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-22 15:03:28 +00:00
Merge pull request #241009 from mitchmindtree/cargo-toml-lint
cargo-toml-lint: init at 0.1.1
This commit is contained in:
commit
cbf013d791
24
pkgs/development/tools/rust/cargo-toml-lint/default.nix
Normal file
24
pkgs/development/tools/rust/cargo-toml-lint/default.nix
Normal file
@ -0,0 +1,24 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchCrate
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-toml-lint";
|
||||
version = "0.1.1";
|
||||
|
||||
src = fetchCrate {
|
||||
inherit pname version;
|
||||
hash = "sha256-U3y9gnFvkqJmyFqRAUQorJQY0iRzAE9UUXzFmgZIyaM=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-ujdekIucqes2Wya4jwTMLstb8JMptbAlqYhgMxfp2gg=";
|
||||
|
||||
meta = with lib; {
|
||||
description = "A simple linter for Cargo.toml manifests";
|
||||
homepage = "https://github.com/fuellabs/cargo-toml-lint";
|
||||
changelog = "https://github.com/fuellabs/cargo-toml-lint/releases/tag/v${version}";
|
||||
license = with licenses; [ asl20 /* or */ mit ];
|
||||
maintainers = with maintainers; [ mitchmindtree ];
|
||||
};
|
||||
}
|
@ -16804,6 +16804,7 @@ with pkgs;
|
||||
cargo-sync-readme = callPackage ../development/tools/rust/cargo-sync-readme { };
|
||||
cargo-tally = callPackage ../development/tools/rust/cargo-tally { };
|
||||
cargo-temp = callPackage ../development/tools/rust/cargo-temp { };
|
||||
cargo-toml-lint = callPackage ../development/tools/rust/cargo-toml-lint { };
|
||||
cargo-udeps = callPackage ../development/tools/rust/cargo-udeps {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreServices Security SystemConfiguration;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user