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

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