R. RyanTM 1084c0387c nodejs-16_x: 16.11.0 -> 16.11.1
(cherry picked from commit ed75efa8783d32390254b17a208e3f0ef6c0e4d5)
2021-10-13 00:25:31 -05:00

15 lines
357 B
Nix

{ callPackage, openssl, python3, enableNpm ? true }:
let
buildNodejs = callPackage ./nodejs.nix {
inherit openssl;
python = python3;
};
in
buildNodejs {
inherit enableNpm;
version = "16.11.1";
sha256 = "0y32mdv8zs35la2bny8d9rxjvj1vr8z079ji1g6ajc2yw96pyn37";
patches = [ ./disable-darwin-v8-system-instrumentation.patch ];
}