/ lib / nix / depgraph.nix
depgraph.nix
 1  {
 2    cargoDepgraph,
 3    cargoArtifacts,
 4    src,
 5    ...
 6  }:
 7  
 8  cargoDepgraph {
 9    inherit cargoArtifacts;
10    inherit src;
11  
12    name = "distrox";
13  
14    cargoDepgraphExtraArgs = "--workspace-only";
15  }