cargo-tree: 0.28.0 -> 0.29.0

https://crates.io/crates/cargo-tree/0.29.0
This commit is contained in:
Maximilian Bosch 2020-02-14 23:34:27 +01:00
parent b39175b9b9
commit ee936405b7
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E

View File

@ -1,19 +1,18 @@
{ stdenv, lib, rustPlatform, fetchFromGitHub, pkgconfig, cmake, curl, libiconv, darwin }:
rustPlatform.buildRustPackage rec {
pname = "cargo-tree";
version = "0.28.0";
version = "0.29.0";
src = fetchFromGitHub {
owner = "sfackler";
repo = "cargo-tree";
rev = "v${version}";
sha256 = "0wv5zgyx18fypdb4pmgzxvr2gb9w8vgv6aqir3dxhcvcgf2j5c3n";
sha256 = "16k41pj66m2221n1v2szir7x7qwx4i0g3svck2c8cj76h0bqyy15";
};
# Delete this on next update; see #79975 for details
legacyCargoFetcher = true;
legacyCargoFetcher = false;
cargoSha256 = "16r7zzkf87v67spahaprc25agwh6d3i0kg73vx8a6w7hgqlk0zwa";
cargoSha256 = "0762gdj4n5mlflhzynnny1h8z792zyxmb4kcn54jj7qzdask4qdy";
nativeBuildInputs = [ pkgconfig cmake ];
buildInputs = [ curl ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
@ -21,7 +20,7 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "A cargo subcommand that visualizes a crate's dependency graph in a tree-like format";
license = with licenses; [ asl20 mit ];
maintainers = with maintainers; [ jD91mZM2 ];
maintainers = with maintainers; [ jD91mZM2 ma27 ];
homepage = "https://crates.io/crates/cargo-tree";
};
}