mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-28 00:24:18 +00:00
16 lines
320 B
Nix
16 lines
320 B
Nix
{ callPackage, python3, enableNpm ? true }:
|
|
|
|
let
|
|
buildNodejs = callPackage ./nodejs.nix {
|
|
python = python3;
|
|
};
|
|
in
|
|
buildNodejs {
|
|
inherit enableNpm;
|
|
version = "17.8.0";
|
|
sha256 = "0jsf6sv42rzpizvil7g1gf9bskh8lx0gcxg0yzpr4hk7mx7i90br";
|
|
patches = [
|
|
./disable-darwin-v8-system-instrumentation.patch
|
|
];
|
|
}
|