summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v14.nix
blob: 86358be5bcf0486eb52a6f06c883c99495bb36d0 (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.21.1";
    sha256 = "sha256-PbldbKcolXvwkLYwGnqdLYBxSyoG2Jih22XG5Csdp6w=";
    patches = lib.optional stdenv.isDarwin ./bypass-xcodebuild.diff;
  }