rustPlatform: fix cross-compiling by using native diff

This commit is contained in:
hyperfekt
2020-06-08 10:05:00 +05:30
committed by ehmry
parent 92c3267ad4
commit 0a8fb89fca
+2 -1
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