2022-08-12 12:06:08 +00:00
|
|
|
{ callPackage, openssl, python3, fetchpatch, enableNpm ? true }:
|
2021-04-22 02:08:21 +00:00
|
|
|
|
|
|
|
let
|
|
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
|
|
inherit openssl;
|
|
|
|
python = python3;
|
|
|
|
};
|
|
|
|
in
|
|
|
|
buildNodejs {
|
|
|
|
inherit enableNpm;
|
2022-09-30 11:47:45 +00:00
|
|
|
version = "16.17.1";
|
|
|
|
sha256 = "sha256-ZyH+tBUtVtLGs1jOOXq9Wn8drwnuLiXFAhubTT+GozA=";
|
2021-12-19 01:06:50 +00:00
|
|
|
patches = [
|
|
|
|
./disable-darwin-v8-system-instrumentation.patch
|
2022-10-30 15:09:59 +00:00
|
|
|
./bypass-darwin-xcrun-node16.patch
|
2022-08-12 12:06:08 +00:00
|
|
|
# Fix npm silently fail without a HOME directory https://github.com/npm/cli/issues/4996
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/npm/cli/commit/9905d0e24c162c3f6cc006fa86b4c9d0205a4c6f.patch";
|
|
|
|
sha256 = "sha256-RlabXWtjzTZ5OgrGf4pFkolonvTDIPlzPY1QcYDd28E=";
|
|
|
|
includes = [ "deps/npm/lib/npm.js" "deps/npm/lib/utils/log-file.js" ];
|
|
|
|
stripLen = 1;
|
|
|
|
extraPrefix = "deps/npm/";
|
|
|
|
})
|
2021-12-19 01:06:50 +00:00
|
|
|
];
|
2021-04-22 02:08:21 +00:00
|
|
|
}
|