Skip to content

Commit

Permalink
chore: Nix: fix cacheRoots
Browse files Browse the repository at this point in the history
  • Loading branch information
Kha committed Jun 21, 2024
1 parent 5767a59 commit 4808eb7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nix/bootstrap.nix
Original file line number Diff line number Diff line change
Expand Up @@ -152,9 +152,9 @@ rec {
'';
meta.mainProgram = "lean";
};
cacheRoots = linkFarmFromDrvs "cacheRoots" [
cacheRoots = linkFarmFromDrvs "cacheRoots" ([
stage0 lean leanc lean-all iTree modDepsFiles depRoots Leanc.src
] ++ map (lib: lib.oTree) stdlib;
] ++ map (lib: lib.oTree) stdlib);
test = buildCMake {
name = "lean-test-${desc}";
realSrc = lib.sourceByRegex src [ "src.*" "tests.*" ];
Expand Down

0 comments on commit 4808eb7

Please sign in to comment.