summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v15.nix
blob: 050e752ed007e10273bae60741b8fbfb9dca213f (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
{ callPackage, openssl, python3, enableNpm ? true }:

let
  buildNodejs = callPackage ./nodejs.nix {
    inherit openssl;
    python = python3;
  };
in
  buildNodejs {
    inherit enableNpm;
    version = "15.10.0";
    sha256 = "1i7fdlkkyh5ssncbvxmiz894a12mww4cmj7y4qzm9ddbbvqxhj3p";
  }