mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-07 05:23:16 +00:00
1d36874445
Diff: https://github.com/bnjbvr/cargo-machete/compare/v0.5.0...v0.6.0 Changelog: https://github.com/bnjbvr/cargo-machete/blob/v0.6.0/CHANGELOG.md
30 lines
774 B
Nix
30 lines
774 B
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-machete";
|
|
version = "0.6.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "bnjbvr";
|
|
repo = "cargo-machete";
|
|
rev = "v${version}";
|
|
hash = "sha256-LDhC/vwhyY4KD1RArCxl+nZl5IVj0zAjxlRLwWpnTvI=";
|
|
};
|
|
|
|
cargoHash = "sha256-vygAznYd/mtArSkLjoIpIxS4RiE3drRfKwNhD1w7KoY=";
|
|
|
|
# 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 matthiasbeyer ];
|
|
};
|
|
}
|