summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v14.nix
blob: 7cae7dd557a214d5f30e2fb99a31475c7c51c0a5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, python3, lib, stdenv, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "14.19.3";
    sha256 = "sha256-XPRbHxrKd1I6zzYkDB1TqZknkHCncR6r8jNG+IsMyZQ=";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }