2021-11-14 17:29:26 +01:00
|
|
|
{ lib, fetchCrate, rustPlatform }:
|
2019-10-15 19:42:03 +02:00
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "cargo-deps";
|
2020-02-27 18:18:20 +01:00
|
|
|
version = "1.4.1";
|
2019-10-15 19:42:03 +02:00
|
|
|
|
2021-11-14 17:29:26 +01:00
|
|
|
src = fetchCrate {
|
|
|
|
inherit pname version;
|
|
|
|
sha256 = "sha256-WzvWkn2o39InESSzF5oLVP1I876b+r749hjZgh2DxOk=";
|
2019-10-15 19:42:03 +02:00
|
|
|
};
|
|
|
|
|
2021-05-07 13:00:49 +02:00
|
|
|
cargoSha256 = "15pf4x2aw8sl65g63cz4yv9y78yc2wi25h9khpqx6i7gyd7dxbsc";
|
2019-10-15 19:42:03 +02:00
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
description = "Cargo subcommand for building dependency graphs of Rust projects";
|
2020-04-01 03:11:51 +02:00
|
|
|
homepage = "https://github.com/m-cat/cargo-deps";
|
2019-10-15 19:42:03 +02:00
|
|
|
license = licenses.mit;
|
|
|
|
maintainers = with maintainers; [ arcnmx ];
|
|
|
|
};
|
|
|
|
}
|