summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v13.nix
blob: db1705d481e0f42061032bf88f022f4e169c2ff7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ callPackage, openssl, icu, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl icu; };
in
  buildNodejs {
    inherit enableNpm;
    version = "13.7.0";
    sha256 = "1fql5858aqny8krrqrgdp97kfia8xv0jlviwnm3akmv8i1i6xqkh";
  }