mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-13 17:23:08 +00:00
39 lines
994 B
Nix
39 lines
994 B
Nix
{
|
|
fetchFromGitHub,
|
|
lib,
|
|
rustPlatform,
|
|
testers,
|
|
cargo-shear,
|
|
}:
|
|
let
|
|
version = "1.0.0";
|
|
in
|
|
rustPlatform.buildRustPackage {
|
|
pname = "cargo-shear";
|
|
inherit version;
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "Boshen";
|
|
repo = "cargo-shear";
|
|
rev = "v${version}";
|
|
hash = "sha256-onTVA/VH5GrDYBDGKbWOSFeW1RCzDooh3PJxCD39e1o=";
|
|
};
|
|
|
|
cargoHash = "sha256-63792ztjnGcAiFpHTcaI03PV4dQxhOP2eRNda8MWiqc=";
|
|
|
|
# https://github.com/Boshen/cargo-shear/blob/a0535415a3ea94c86642f39f343f91af5cdc3829/src/lib.rs#L20-L23
|
|
SHEAR_VERSION = version;
|
|
passthru.tests.version = testers.testVersion {
|
|
package = cargo-shear;
|
|
};
|
|
|
|
meta = {
|
|
description = "Detect and remove unused dependencies from Cargo.toml";
|
|
mainProgram = "cargo-shear";
|
|
homepage = "https://github.com/Boshen/cargo-shear";
|
|
changelog = "https://github.com/Boshen/cargo-shear/blob/v${version}/CHANGELOG.md";
|
|
license = [ lib.licenses.mit ];
|
|
maintainers = with lib.maintainers; [ uncenter ];
|
|
};
|
|
}
|