From 38c44143d78644394f0b50c5695904c58e33c213 Mon Sep 17 00:00:00 2001 From: Antoine du Hamel Date: Sun, 28 Jun 2026 17:45:22 +0200 Subject: [PATCH] nodejs_24: fix typo in derivation --- pkgs/development/web/nodejs/v24.nix | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/pkgs/development/web/nodejs/v24.nix b/pkgs/development/web/nodejs/v24.nix index 823cd488c5b8..3388b484ebe8 100644 --- a/pkgs/development/web/nodejs/v24.nix +++ b/pkgs/development/web/nodejs/v24.nix @@ -9,15 +9,16 @@ }: let - buildNodejs = - callPackage ./nodejs.nix { + buildNodejs = callPackage ./nodejs.nix ( + { inherit openssl; python = python3; } // lib.optionalAttrs stdenv.hostPlatform.isDarwin { # libcxx21 makes FD tracking unreliable on Darwin. Pinning to libcxx20: stdenv = buildPackages.llvmPackages_20.libcxxStdenv; - }; + } + ); gypPatches = if stdenv.buildPlatform.isDarwin then