From 282ef0f8d3746f899986b123bdfbda472af57079 Mon Sep 17 00:00:00 2001 From: Colin Date: Sat, 5 Aug 2023 09:04:02 +0000 Subject: [PATCH] cross: fix `enableParallelBuilding` to work --- overlays/cross.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/overlays/cross.nix b/overlays/cross.nix index 8f000089..34744cb6 100644 --- a/overlays/cross.nix +++ b/overlays/cross.nix @@ -95,7 +95,7 @@ let origArgs = args; QEMU_OPTS = "-m 4096"; # MiB of RAM - enableParallelBuilding = "1"; #< not obvious this actually has an effect + enableParallelBuilding = true; # finally, let nix know that this package should be built by the build system system = final.stdenv.buildPlatform.system;