rustPlatform: fix cross-compiling by using native diff

This commit is contained in:
hyperfekt 2020-06-07 19:51:13 +02:00 committed by ehmry
parent 92c3267ad4
commit 0a8fb89fca

View file

@ -70,7 +70,8 @@ let
# Specify the stdenv's `diff` by abspath to ensure that the user's build
# inputs do not cause us to find the wrong `diff`.
diff = "${diffutils}/bin/diff";
# The `.nativeDrv` stanza works like nativeBuildInputs and ensures cross-compiling has the right version available.
diff = "${diffutils.nativeDrv or diffutils}/bin/diff";
in