about summary refs log tree commit diff
path: root/pkgs/development/web/nodejs/v15.nix
blob: f115e42d0d0809db6b12128455e3a445672d4184 (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.0.1";
    sha256 = "03xxnl7q96fmm7lalliwb9kmllz52jqrcsqn9cx9pzhwd1x97l5q";
  }