Fix eval when aliases are disabled

This commit is contained in:
Sandro Jäckel 2023-06-13 19:31:50 +02:00
parent 59e3ebb19f
commit 7777777700
No known key found for this signature in database
GPG Key ID: 3AF5A43A3EECC2E5
1 changed files with 2 additions and 2 deletions

View File

@ -63,8 +63,8 @@
inherit system; inherit system;
crossSystem = { crossSystem = {
# linuxArch is wrong here, it will yield arm64 instead of aarch64. # linuxArch is wrong here, it will yield arm64 instead of aarch64.
config = "${pkgs.hostPlatform.qemuArch}-windows"; config = "${pkgs.stdenv.hostPlatform.qemuArch}-windows";
rustc.config = "${pkgs.hostPlatform.qemuArch}-unknown-uefi"; rustc.config = "${pkgs.stdenv.hostPlatform.qemuArch}-unknown-uefi";
libc = null; libc = null;
useLLVM = true; useLLVM = true;
}; };