summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v11.nix
blob: 4026a1b02bb6c1b6d6e6d22b34c0a2d765296614 (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.14.0";
    sha256 = "1rvdyvlvh8ddm9y2razshly5kb87kw0js287i0a5dzb5ay41vxlx";
  }