From c13471a8af7ff0ad6bb567460770d4c0a161a795 Mon Sep 17 00:00:00 2001 From: Andrej730 Date: Fri, 28 Aug 2026 18:51:21 +0500 Subject: [PATCH] build-all: fix missing cgal dependency on boost boost does have `"boost" in targets` guard, so building just `cgal` previously would fail --- nix/build-all.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nix/build-all.py b/nix/build-all.py index f6646eff5a..934eb5daae 100644 --- a/nix/build-all.py +++ b/nix/build-all.py @@ -488,7 +488,7 @@ dependency_tree: dict[str, tuple[str, ...]] = { "occ": (), "pcre": (), "json": (), - "cgal": (), + "cgal": ("boost",), "eigen": (), "rocksdb": ("zstd",), "zstd": (),