about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v11.nix
blob: 7378729581fc1ba288076c694361debb7af58cba (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 = "11.6.0";
    sha256 = "1czrpxmk6calqn0p92rm0bv2vlgbnx6q4z7n2j8r7aw0khwbxwll";
  }