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

let
  buildNodejs = callPackage ./nodejs.nix {};
in
  buildNodejs {
    inherit enableNpm;
    version = "8.16.0";
    sha256 = "0h3k5y51fyysqnqb8n5v5zxga937pipag49xzx6xr9b82phfh59m";
  }