about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v12.nix
blob: 06eb3e45e6fcda4527220e82ce49444d37c364ec (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "12.3.1";
    sha256 = "1zhb5nq9s6cshbm6lf7qsy310fcsiy9wdr869vs6hw76zyn50axs";
  }