about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v13.nix
blob: affb86bece8622e0b1ea68e22f58a2bd38fbb6d9 (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.10.1";
    sha256 = "14pvqwhilq210zn830zmh04a62rj3si0ijc4ihrhdf3dvghrx2c3";
  }