From afeed62756fa4f0b1846676e4a52bbfb8e162ecf Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Tue, 14 Apr 2026 15:48:50 +0200 Subject: [PATCH] tools: pass the Temporal disable flag when disabled in `shell.nix` Signed-off-by: Antoine du Hamel --- shell.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell.nix b/shell.nix index 244d915e1a1058..8a873741072e1e 100644 --- a/shell.nix +++ b/shell.nix @@ -65,8 +65,8 @@ let else "--with-intl=${if useSharedICU then "system" else icu}-icu" ) + "--v8-${if withTemporal then "enable" else "disable"}-temporal-support" ] - ++ pkgs.lib.optional withTemporal "--v8-enable-temporal-support" ++ pkgs.lib.optional (withTemporal && useSharedTemporal) "--shared-temporal_capi"; in pkgs.mkShell {