1{ callPackage, python3, lib, stdenv, openssl, enableNpm ? true }:
2
3let
4 buildNodejs = callPackage ./nodejs.nix {
5 inherit openssl;
6 python = python3;
7 };
8in
9 buildNodejs {
10 inherit enableNpm;
11 version = "14.21.3";
12 sha256 = "sha256-RY7AkuYK1wDdzwectj1DXBXaTHuz0/mbmo5YqZ5UB14=";
13 patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
14 }