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

11 lines
265 B
Nix
Raw Normal View History

2018-04-26 03:01:14 -07:00
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2018-09-21 02:03:25 -07:00
version = "10.11.0";
sha256 = "16wfgwnb2yd6y608svj2fizdq3sid44m0wqn4swkvclxb71444mr";
2018-04-26 03:01:14 -07:00
}