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