25 lines
802 B
Nix
25 lines
802 B
Nix
{ stdenv, lib, rustPlatform, fetchFromGitHub, pkgconfig, cmake, curl, libiconv, darwin }:
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-tree";
|
|
version = "0.26.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sfackler";
|
|
repo = "cargo-tree";
|
|
rev = "v${version}";
|
|
|
|
sha256 = "12z0sa7g79x46q2ybpy6i9rf1x4cnwajw8dsjzra2qhssyp8rp9c";
|
|
};
|
|
|
|
cargoSha256 = "0ibmgyiqa53m9xfvl726w1sq37lbdp7vzyc76gwcp1zvzkcv2860";
|
|
|
|
nativeBuildInputs = [ pkgconfig cmake ];
|
|
buildInputs = [ curl ] ++ lib.optionals stdenv.isDarwin [ libiconv darwin.apple_sdk.frameworks.Security ];
|
|
|
|
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 ];
|
|
};
|
|
}
|