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

11 lines
265 B
Nix
Raw Normal View History

2018-04-26 11:01:14 +01:00
{ stdenv, callPackage, lib, openssl, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2018-10-11 00:53:34 +01:00
version = "10.12.0";
sha256 = "1r0aqcxafha13ks8586x77n77zi88db259cpaix0y1ivdh6qkkfr";
2018-04-26 11:01:14 +01:00
}