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-09-18 11:20:00 +02:00
version = "10.16.3";
sha256 = "1gbblbmvx7a0wkgp3fs2pf5c1hymdpnfc7zqp1slg5hmfhyi5wbv";
2018-04-26 12:01:14 +02:00
}