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