From 30358ffd350f37f45027a7d059a4b9257348413b Mon Sep 17 00:00:00 2001 From: Antonio Nuno Monteiro Date: Sat, 26 Oct 2024 18:45:57 -0700 Subject: [PATCH] chore(build): use nodejs_latest (#1193) it looks like we were building nodejs in tests for macos-13? --- nix/default.nix | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/nix/default.nix b/nix/default.nix index 38ab501ea..c29227650 100644 --- a/nix/default.nix +++ b/nix/default.nix @@ -6,7 +6,7 @@ , tree , makeWrapper , nix-filter -, nodejs +, nodejs_latest , melange-compiler-libs-vendor-dir , doCheck ? true }: @@ -49,7 +49,7 @@ buildDunePackage { # for some reason `-Wtrigraphs` was enabled in nixpkgs recently for # x86_64-darwin? !(stdenv.isDarwin && stdenv.isx86_64); - nativeCheckInputs = [ tree nodejs reason jq merlin ]; + nativeCheckInputs = [ tree nodejs_latest reason jq merlin ]; checkInputs = [ ounit2 ]; DUNE_CACHE = "disabled";