Skip to content

Commit

Permalink
fetchcargo: fixed config installation path
Browse files Browse the repository at this point in the history
  • Loading branch information
akru committed Dec 14, 2018
1 parent 38d4c09 commit 451b181
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/build-support/rust/fetchcargo.nix
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ stdenv.mkDerivation {
# But not to break old cargoSha256, if the previous behavior was enough,
# we don't store the config.
if ! cmp $CARGO_CONFIG ${./fetchcargo-default-config.toml} > /dev/null; then
install -Dt $out/.cargo $CARGO_CONFIG;
install -D $CARGO_CONFIG $out/.cargo/config;
fi;
'';

Expand Down

0 comments on commit 451b181

Please sign in to comment.