Merge pull request #198 from SuperSandro2000/fix-eval
Fix eval when aliases are disabled
This commit is contained in:
commit
823ad6b70b
|
@ -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;
|
||||||
};
|
};
|
||||||
|
|
Loading…
Reference in New Issue