nixpkgs/pkgs/development/web/nodejs/v11.nix

11 lines
264 B
Nix
Raw Normal View History

2018-10-23 19:22:50 +00:00
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2019-01-03 08:04:00 +00:00
version = "11.6.0";
sha256 = "1czrpxmk6calqn0p92rm0bv2vlgbnx6q4z7n2j8r7aw0khwbxwll";
2018-10-23 19:22:50 +00:00
}