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

11 lines
252 B
Nix
Raw Normal View History

{ callPackage, openssl, enableNpm ? true }:
2018-04-26 12:01:14 +02:00
let
buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
buildNodejs {
inherit enableNpm;
2019-05-29 01:20:00 +02:00
version = "10.16.0";
sha256 = "0236jlb1hxhzqjlmmlxipcycrndiq92c8434iyy7zshh3n4pzqqq";
2018-04-26 12:01:14 +02:00
}