nixpkgs mirror (for testing) github.com/NixOS/nixpkgs
nix
1{ replaceWorkspaceValues, runCommand }: 2 3runCommand "git-dependency-workspace-inheritance-test" { } '' 4 cp --no-preserve=mode ${./crate.toml} "$out" 5 ${replaceWorkspaceValues} "$out" ${./workspace.toml} 6 diff -u "$out" ${./want.toml} 7''