summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v13.nix
blob: dcd0f3dd2b7d487a6fb059c65c6f6df193b6eab6 (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.8.0";
    sha256 = "1h437yvg43xci35rvp55gvb94rddkf4j9i9iw81bmkwhvb4h8qdv";
  }