Files
nixpkgs/pkgs/development/web/nodejs/v16.nix
Mario Rodas 0cde4bf18f nodejs-16_x: 16.4.0 -> 16.4.1
https://github.com/nodejs/node/releases/tag/v16.4.1
(cherry picked from commit 4f90b61a11496e16d2e460301b73426ddd2be0b8)
2021-07-02 18:43:49 -05:00

14 lines
288 B
Nix

{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "16.4.1";
sha256 = "1a1aygksmbafxvrs8g2jv0y1jj3cwyclk0qbqxkn5qfq5r1i943n";
}