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

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    icu = icu67;
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "14.6.0";
    sha256 = "153a07ffrmvwbsc78wrc0xnwymmzrhva0kn6mgnfi3086v3h1wss";
  }