summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v10.nix
blob: 939b065a55c211690e8e00533fc9443cb4690904 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
{ callPackage, openssl, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "10.16.3";
    sha256 = "1gbblbmvx7a0wkgp3fs2pf5c1hymdpnfc7zqp1slg5hmfhyi5wbv";
  }