5d527793ae
https://github.com/nodejs/node/blob/master/doc/changelogs/CHANGELOG_V11.md (see notes for all versions after 11.7.0)
11 lines
265 B
Nix
11 lines
265 B
Nix
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "11.11.0";
|
|
sha256 = "1732jv95xza8813wk7qy22jxh2x9lnc9lr0rqkql7ggf03wymn56";
|
|
}
|