d614edeb32
This was supposed to go through a pull request Revert "nodePackages: Regenerate node packages for nodejs 10 & 12" This reverts commit6a17bdf397
. Revert "nodejs-8_x: Drop package" This reverts commite06c97b71d
.
11 lines
224 B
Nix
11 lines
224 B
Nix
{ callPackage, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "8.16.0";
|
|
sha256 = "0h3k5y51fyysqnqb8n5v5zxga937pipag49xzx6xr9b82phfh59m";
|
|
}
|