depot/third_party/nixpkgs/pkgs/development/web/nodejs/v17.nix

14 lines
314 B
Nix
Raw Normal View History

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