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

let
  buildNodejs = callPackage ./nodejs.nix { inherit openssl; };
in
  buildNodejs {
    inherit enableNpm;
    version = "10.16.0";
    sha256 = "0236jlb1hxhzqjlmmlxipcycrndiq92c8434iyy7zshh3n4pzqqq";
  }