Skip to content

Commit

Permalink
Merge pull request NixOS#52046 from akru/master
Browse files Browse the repository at this point in the history
fetchcargo: fixed config installation path
  • Loading branch information
Mic92 authored Dec 14, 2018
2 parents 2874bac + 451b181 commit c9c1562
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 c9c1562

Please sign in to comment.