summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v14.nix
blob: e2a65ace38115271f99041ab3021733d9f6c7041 (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.1";
    sha256 = "sha256-4a4J3YYas5rwRIO7XA+lTd2CtrFVQ76aJ+pnBKi6ndk=";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }