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