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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "14.20.0";
    sha256 = "0slrcgiwwn8isp2ih5i2v1d6lsafz7bg6qwxf2lydlc9i14rhl1b";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }