Merge pull request #221673 from figsoda/cargo-machete
This commit is contained in:
commit
8e3734e088
29
pkgs/development/tools/rust/cargo-machete/default.nix
Normal file
29
pkgs/development/tools/rust/cargo-machete/default.nix
Normal file
@ -0,0 +1,29 @@
|
||||
{ lib
|
||||
, rustPlatform
|
||||
, fetchFromGitHub
|
||||
}:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-machete";
|
||||
version = "0.5.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bnjbvr";
|
||||
repo = "cargo-machete";
|
||||
rev = "v${version}";
|
||||
hash = "sha256-AOi4SnFkt82iQIP3bp/9JIaYiqjiEjKvJKUvrLQJTX8=";
|
||||
};
|
||||
|
||||
cargoHash = "sha256-Q/2py0zgCYgnxFpcJD5PfNfIfIEUjtjFPjxDe25f0BQ=";
|
||||
|
||||
# tests require internet access
|
||||
doCheck = false;
|
||||
|
||||
meta = with lib; {
|
||||
description = "A Cargo tool that detects unused dependencies in Rust projects";
|
||||
homepage = "https://github.com/bnjbvr/cargo-machete";
|
||||
changelog = "https://github.com/bnjbvr/cargo-machete/blob/${src.rev}/CHANGELOG.md";
|
||||
license = licenses.mit;
|
||||
maintainers = with maintainers; [ figsoda ];
|
||||
};
|
||||
}
|
@ -15982,6 +15982,7 @@ with pkgs;
|
||||
cargo-llvm-cov = callPackage ../development/tools/rust/cargo-llvm-cov { };
|
||||
cargo-llvm-lines = callPackage ../development/tools/rust/cargo-llvm-lines { };
|
||||
cargo-lock = callPackage ../development/tools/rust/cargo-lock { };
|
||||
cargo-machete = callPackage ../development/tools/rust/cargo-machete { };
|
||||
cargo-outdated = callPackage ../development/tools/rust/cargo-outdated {
|
||||
inherit (darwin.apple_sdk.frameworks) CoreFoundation Security SystemConfiguration;
|
||||
};
|
||||
|
Loading…
Reference in New Issue
Block a user