From 150bb59b3ca5f8ebf0d70bdad3155db7ee038707 Mon Sep 17 00:00:00 2001 From: Sebastian Ullrich Date: Mon, 9 Sep 2024 18:10:56 +0200 Subject: [PATCH] chore: fix Nix update-stage0 --- nix/bootstrap.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/bootstrap.nix b/nix/bootstrap.nix index b0af20306463..661fa34230e7 100644 --- a/nix/bootstrap.nix +++ b/nix/bootstrap.nix @@ -178,7 +178,7 @@ lib.warn "The Nix-based build is deprecated" rec { ''; }; update-stage0 = - let cTree = symlinkJoin { name = "cs"; paths = map (lib: lib.cTree) stdlib; }; in + let cTree = symlinkJoin { name = "cs"; paths = map (lib: lib.cTree) (stdlib ++ [Lake-Main]); }; in writeShellScriptBin "update-stage0" '' CSRCS=${cTree} CP_C_PARAMS="--dereference --no-preserve=all" ${src + "/script/lib/update-stage0"} '';