summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v12.nix
blob: ae74764384c646f243d768837bbfa33c38dfd5ec (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 = "12.5.0";
    sha256 = "08haqs104lw44l92bxfii18sdn7y1k07cz3p0ni9bhw7kh4vf5c7";
  }