forked from mirrors/nixpkgs
Merge pull request #71199 from arcnmx/pr-cargo-deps
cargo-deps: init at 1.1.1
This commit is contained in:
commit
882dc45801
maintainers
pkgs
|
@ -551,6 +551,12 @@
|
|||
githubId = 56009;
|
||||
name = "Arcadio Rubio García";
|
||||
};
|
||||
arcnmx = {
|
||||
email = "arcnmx@users.noreply.github.com";
|
||||
github = "arcnmx";
|
||||
githubId = 13426784;
|
||||
name = "arcnmx";
|
||||
};
|
||||
ardumont = {
|
||||
email = "eniotna.t@gmail.com";
|
||||
github = "ardumont";
|
||||
|
|
23
pkgs/tools/package-management/cargo-deps/default.nix
Normal file
23
pkgs/tools/package-management/cargo-deps/default.nix
Normal file
|
@ -0,0 +1,23 @@
|
|||
{ lib, fetchFromGitHub, rustPlatform }:
|
||||
|
||||
rustPlatform.buildRustPackage rec {
|
||||
pname = "cargo-deps";
|
||||
version = "1.1.1";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "m-cat";
|
||||
repo = pname;
|
||||
rev = "ab93f5655900e49fb0360ccaf72b2b61b6b428ef";
|
||||
sha256 = "16181p7ghvy9mqippg1xi2cw7yxvicis8v6n39wly5qw05i57aw2";
|
||||
};
|
||||
|
||||
cargoSha256 = "1a9svdw1cgk6s7gqpsq3r25wxa2gr2xddqkc1cjk7hf6sk327cpv";
|
||||
|
||||
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 ];
|
||||
platforms = platforms.all;
|
||||
};
|
||||
}
|
|
@ -8431,6 +8431,7 @@ in
|
|||
cargo-audit = callPackage ../tools/package-management/cargo-audit {
|
||||
inherit (darwin.apple_sdk.frameworks) Security;
|
||||
};
|
||||
cargo-deps = callPackage ../tools/package-management/cargo-deps { };
|
||||
cargo-download = callPackage ../tools/package-management/cargo-download { };
|
||||
cargo-edit = callPackage ../tools/package-management/cargo-edit { };
|
||||
cargo-graph = callPackage ../tools/package-management/cargo-graph { };
|
||||
|
|
Loading…
Reference in a new issue