3
0
Fork 0
forked from mirrors/nixpkgs
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;
2019-05-29 00:20:00 +01:00
version = "10.16.0";
sha256 = "0236jlb1hxhzqjlmmlxipcycrndiq92c8434iyy7zshh3n4pzqqq";
2018-04-26 11:01:14 +01:00
}