5e7c2d6cef
GitOrigin-RevId: f99e5f03cc0aa231ab5950a15ed02afec45ed51a
20 lines
566 B
Nix
20 lines
566 B
Nix
{ lib, fetchCrate, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-deps";
|
|
version = "1.5.1";
|
|
|
|
src = fetchCrate {
|
|
inherit pname version;
|
|
hash = "sha256-qnSHG4AhBrleYKZ4SJ4AwHdJyiidj8NTeSSphBRo7gg=";
|
|
};
|
|
|
|
cargoHash = "sha256-dpCbFA9AZmIFPx69tw0CqHF+lVw7uhUlwAeVX1+lIK8=";
|
|
|
|
meta = with lib; {
|
|
description = "Cargo subcommand for building dependency graphs of Rust projects";
|
|
homepage = "https://github.com/m-cat/cargo-deps";
|
|
license = licenses.mit;
|
|
maintainers = with maintainers; [ arcnmx matthiasbeyer ];
|
|
};
|
|
}
|