about summary refs log tree commit diff
path: root/nixpkgs/pkgs/development/tools/rust/cargo-deps/default.nix
blob: 4265873a71acc6dec987728747e4254733889d64 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{ 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";
    mainProgram = "cargo-deps";
    homepage = "https://github.com/m-cat/cargo-deps";
    license = licenses.mit;
    maintainers = with maintainers; [ arcnmx matthiasbeyer ];
  };
}