mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-03 04:13:01 +00:00
Merge pull request #192621 from figsoda/update-cargo-depgraph
cargo-depgraph: 1.2.5 -> 1.3.0
This commit is contained in:
commit
b725158027
@ -1,17 +1,15 @@
|
|||||||
{ lib, rustPlatform, fetchFromSourcehut }:
|
{ lib, rustPlatform, fetchCrate }:
|
||||||
|
|
||||||
rustPlatform.buildRustPackage rec {
|
rustPlatform.buildRustPackage rec {
|
||||||
pname = "cargo-depgraph";
|
pname = "cargo-depgraph";
|
||||||
version = "1.2.5";
|
version = "1.3.0";
|
||||||
|
|
||||||
src = fetchFromSourcehut {
|
src = fetchCrate {
|
||||||
owner = "~jplatte";
|
inherit pname version;
|
||||||
repo = pname;
|
sha256 = "sha256-mlbS9EI/ltxnWfpci9hK9QwYpA/nII+wc2IRSHrmNGI=";
|
||||||
rev = "v${version}";
|
|
||||||
sha256 = "sha256-ewlrxxHnsXBWSMPAlxTfrHj23jMiThkDSJhEsChO/sM=";
|
|
||||||
};
|
};
|
||||||
|
|
||||||
cargoSha256 = "sha256-Ce13vJ5zE63hHVkg/WFdz3LrASj7Xw6nqOO64uALOeQ=";
|
cargoSha256 = "sha256-9CKFZmkFiip6iQVkBmy/XoMEoyMhlKNRyI8oDHaAILc=";
|
||||||
|
|
||||||
meta = with lib; {
|
meta = with lib; {
|
||||||
description = "Create dependency graphs for cargo projects using `cargo metadata` and graphviz";
|
description = "Create dependency graphs for cargo projects using `cargo metadata` and graphviz";
|
||||||
|
Loading…
Reference in New Issue
Block a user