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