chore: Nix: remove Leanpkg from stage 0

This commit is contained in:
Sebastian Ullrich 2021-09-20 16:26:51 +02:00
parent d3eb5deeea
commit f49d05bd76

View file

@ -141,7 +141,7 @@ rec {
'';
};
update-stage0 =
let cTree = symlinkJoin { name = "cs"; paths = [ Init.cTree Std.cTree Lean.cTree Leanpkg.cTree ]; }; in
let cTree = symlinkJoin { name = "cs"; paths = map (l: l.cTree) stdlib; }; in
writeShellScriptBin "update-stage0" ''
CSRCS=${cTree} CP_PARAMS="--dereference --no-preserve=all" ${../script/update-stage0}
'';