2024-09-19 14:19:46 +00:00
|
|
|
|
{ lib, stdenv, fetchurl, openssl, python, zlib, libuv, http-parser, icu, bash
|
|
|
|
|
, ninja, pkgconf, unixtools, runCommand, buildPackages
|
2024-07-31 10:19:44 +00:00
|
|
|
|
, testers
|
2021-12-06 16:07:01 +00:00
|
|
|
|
# for `.pkgs` attribute
|
|
|
|
|
, callPackage
|
2020-04-24 23:36:52 +00:00
|
|
|
|
# Updater dependencies
|
|
|
|
|
, writeScript, coreutils, gnugrep, jq, curl, common-updater-scripts, nix, runtimeShell
|
|
|
|
|
, gnupg
|
2024-09-19 14:19:46 +00:00
|
|
|
|
, darwin
|
2024-07-27 06:49:29 +00:00
|
|
|
|
, installShellFiles
|
2020-04-24 23:36:52 +00:00
|
|
|
|
}:
|
|
|
|
|
|
|
|
|
|
{ enableNpm ? true, version, sha256, patches ? [] } @args:
|
|
|
|
|
|
|
|
|
|
let
|
|
|
|
|
inherit (darwin.apple_sdk.frameworks) CoreServices ApplicationServices;
|
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
majorVersion = lib.versions.major version;
|
|
|
|
|
minorVersion = lib.versions.minor version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2022-02-10 20:34:41 +00:00
|
|
|
|
pname = if enableNpm then "nodejs" else "nodejs-slim";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
canExecute = stdenv.buildPlatform.canExecute stdenv.hostPlatform;
|
|
|
|
|
emulator = stdenv.hostPlatform.emulator buildPackages;
|
|
|
|
|
|
|
|
|
|
# See valid_os and valid_arch in configure.py.
|
|
|
|
|
destOS =
|
|
|
|
|
let
|
|
|
|
|
platform = stdenv.hostPlatform;
|
|
|
|
|
in
|
|
|
|
|
if platform.isiOS then
|
|
|
|
|
"ios"
|
|
|
|
|
else if platform.isAndroid then
|
|
|
|
|
"android"
|
|
|
|
|
else if platform.isWindows then
|
|
|
|
|
"win"
|
|
|
|
|
else if platform.isDarwin then
|
|
|
|
|
"mac"
|
|
|
|
|
else if platform.isLinux then
|
|
|
|
|
"linux"
|
|
|
|
|
else if platform.isOpenBSD then
|
|
|
|
|
"openbsd"
|
|
|
|
|
else if platform.isFreeBSD then
|
|
|
|
|
"freebsd"
|
|
|
|
|
else
|
|
|
|
|
throw "unsupported os ${platform.uname.system}";
|
|
|
|
|
destCPU =
|
|
|
|
|
let
|
|
|
|
|
platform = stdenv.hostPlatform;
|
|
|
|
|
in
|
|
|
|
|
if platform.isAarch then
|
|
|
|
|
"arm" + lib.optionalString platform.is64bit "64"
|
|
|
|
|
else if platform.isMips32 then
|
|
|
|
|
"mips" + lib.optionalString platform.isLittleEndian "le"
|
|
|
|
|
else if platform.isMips64 && platform.isLittleEndian then
|
|
|
|
|
"mips64el"
|
|
|
|
|
else if platform.isPower then
|
|
|
|
|
"ppc" + lib.optionalString platform.is64bit "64"
|
|
|
|
|
else if platform.isx86_64 then
|
|
|
|
|
"x64"
|
|
|
|
|
else if platform.isx86_32 then
|
|
|
|
|
"ia32"
|
|
|
|
|
else if platform.isS390x then
|
|
|
|
|
"s390x"
|
|
|
|
|
else if platform.isRiscV64 then
|
|
|
|
|
"riscv64"
|
|
|
|
|
else if platform.isLoongArch64 then
|
|
|
|
|
"loong64"
|
|
|
|
|
else
|
|
|
|
|
throw "unsupported cpu ${platform.uname.processor}";
|
|
|
|
|
destARMFPU =
|
|
|
|
|
let
|
|
|
|
|
platform = stdenv.hostPlatform;
|
|
|
|
|
in
|
|
|
|
|
if platform.isAarch32 && platform ? gcc.fpu then
|
|
|
|
|
lib.throwIfNot (builtins.elem platform.gcc.fpu [
|
|
|
|
|
"vfp"
|
|
|
|
|
"vfpv2"
|
|
|
|
|
"vfpv3"
|
|
|
|
|
"vfpv3-d16"
|
|
|
|
|
"neon"
|
|
|
|
|
]) "unsupported ARM FPU ${platform.gcc.fpu}" platform.gcc.fpu
|
|
|
|
|
else
|
|
|
|
|
null;
|
|
|
|
|
destARMFloatABI =
|
|
|
|
|
let
|
|
|
|
|
platform = stdenv.hostPlatform;
|
|
|
|
|
in
|
|
|
|
|
if platform.isAarch32 && platform ? gcc.float-abi then
|
|
|
|
|
lib.throwIfNot (builtins.elem platform.gcc.float-abi [
|
|
|
|
|
"soft"
|
|
|
|
|
"softfp"
|
|
|
|
|
"hard"
|
|
|
|
|
]) "unsupported ARM float ABI ${platform.gcc.float-abi}" platform.gcc.float-abi
|
|
|
|
|
else
|
|
|
|
|
null;
|
|
|
|
|
# TODO: also handle MIPS flags (mips_arch, mips_fpu, mips_float_abi).
|
|
|
|
|
|
|
|
|
|
useSharedHttpParser = !stdenv.hostPlatform.isDarwin && lib.versionOlder "${majorVersion}.${minorVersion}" "11.4";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
sharedLibDeps = { inherit openssl zlib libuv; } // (lib.optionalAttrs useSharedHttpParser { inherit http-parser; });
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
copyLibHeaders =
|
|
|
|
|
map
|
2023-02-02 18:25:31 +00:00
|
|
|
|
(name: "${lib.getDev sharedLibDeps.${name}}/include/*")
|
2020-04-24 23:36:52 +00:00
|
|
|
|
(builtins.attrNames sharedLibDeps);
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
# Currently stdenv sets CC/LD/AR/etc environment variables to program names
|
|
|
|
|
# instead of absolute paths. If we add cctools to nativeBuildInputs, that
|
|
|
|
|
# would shadow stdenv’s bintools and potentially break other parts of the
|
|
|
|
|
# build. The correct behavior is to use absolute paths, and there is a PR for
|
|
|
|
|
# that, see https://github.com/NixOS/nixpkgs/pull/314920. As a temporary
|
|
|
|
|
# workaround, we use only a single program we need (and that is not part of
|
|
|
|
|
# the stdenv).
|
|
|
|
|
darwin-cctools-only-libtool =
|
|
|
|
|
# Would be nice to have onlyExe builder similar to onlyBin…
|
|
|
|
|
runCommand "darwin-cctools-only-libtool" { cctools = lib.getBin buildPackages.cctools; } ''
|
|
|
|
|
mkdir -p "$out/bin"
|
|
|
|
|
ln -s "$cctools/bin/libtool" "$out/bin/libtool"
|
|
|
|
|
'';
|
2024-07-27 06:49:29 +00:00
|
|
|
|
|
|
|
|
|
package = stdenv.mkDerivation (finalAttrs:
|
|
|
|
|
let
|
|
|
|
|
/** the final package fixed point, after potential overrides */
|
|
|
|
|
self = finalAttrs.finalPackage;
|
|
|
|
|
in
|
|
|
|
|
{
|
2022-02-10 20:34:41 +00:00
|
|
|
|
inherit pname version;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
|
url = "https://nodejs.org/dist/v${version}/node-v${version}.tar.xz";
|
|
|
|
|
inherit sha256;
|
|
|
|
|
};
|
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
strictDeps = true;
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
env = {
|
|
|
|
|
# Tell ninja to avoid ANSI sequences, otherwise we don’t see build
|
|
|
|
|
# progress in Nix logs.
|
|
|
|
|
#
|
|
|
|
|
# Note: do not set TERM=dumb environment variable globally, it is used in
|
|
|
|
|
# test-ci-js test suite to skip tests that otherwise run fine.
|
|
|
|
|
NINJA = "TERM=dumb ninja";
|
|
|
|
|
} // lib.optionalAttrs (stdenv.hostPlatform.isDarwin && stdenv.hostPlatform.isx86_64) {
|
2023-11-16 04:20:00 +00:00
|
|
|
|
# Make sure libc++ uses `posix_memalign` instead of `aligned_alloc` on x86_64-darwin.
|
|
|
|
|
# Otherwise, nodejs would require the 11.0 SDK and macOS 10.15+.
|
2024-09-19 14:19:46 +00:00
|
|
|
|
NIX_CFLAGS_COMPILE = "-D__ENVIRONMENT_MAC_OS_X_VERSION_MIN_REQUIRED__=101300 -Wno-macro-redefined";
|
2023-11-16 04:20:00 +00:00
|
|
|
|
};
|
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
# NB: technically, we do not need bash in build inputs since all scripts are
|
|
|
|
|
# wrappers over the corresponding JS scripts. There are some packages though
|
|
|
|
|
# that use bash wrappers, e.g. polaris-web.
|
2024-09-19 14:19:46 +00:00
|
|
|
|
buildInputs = lib.optionals stdenv.hostPlatform.isDarwin [ CoreServices ApplicationServices ]
|
2023-10-09 19:29:22 +00:00
|
|
|
|
++ [ zlib libuv openssl http-parser icu bash ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
nativeBuildInputs =
|
|
|
|
|
[
|
|
|
|
|
installShellFiles
|
|
|
|
|
ninja
|
|
|
|
|
pkgconf
|
|
|
|
|
python
|
|
|
|
|
]
|
|
|
|
|
++ lib.optionals stdenv.buildPlatform.isDarwin [
|
|
|
|
|
# gyp checks `sysctl -n hw.memsize` if `sys.platform == "darwin"`.
|
|
|
|
|
unixtools.sysctl
|
|
|
|
|
]
|
|
|
|
|
++ lib.optionals stdenv.hostPlatform.isDarwin [
|
|
|
|
|
# For gyp-mac-tool if `flavor == "mac"`.
|
|
|
|
|
darwin-cctools-only-libtool
|
|
|
|
|
];
|
|
|
|
|
|
|
|
|
|
# We currently rely on Makefile and stdenv for build phases, so do not let
|
|
|
|
|
# ninja’s setup hook to override default stdenv phases.
|
|
|
|
|
dontUseNinjaBuild = true;
|
|
|
|
|
dontUseNinjaCheck = true;
|
|
|
|
|
dontUseNinjaInstall = true;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2021-12-19 01:06:50 +00:00
|
|
|
|
outputs = [ "out" "libv8" ];
|
|
|
|
|
setOutputFlags = false;
|
|
|
|
|
moveToDev = false;
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
configureFlags =
|
|
|
|
|
[
|
|
|
|
|
"--ninja"
|
|
|
|
|
"--with-intl=system-icu"
|
|
|
|
|
"--openssl-use-def-ca-store"
|
|
|
|
|
"--no-cross-compiling"
|
|
|
|
|
"--dest-os=${destOS}"
|
|
|
|
|
"--dest-cpu=${destCPU}"
|
|
|
|
|
]
|
|
|
|
|
++ lib.optionals (destARMFPU != null) [ "--with-arm-fpu=${destARMFPU}" ]
|
|
|
|
|
++ lib.optionals (destARMFloatABI != null) [ "--with-arm-float-abi=${destARMFloatABI}" ]
|
|
|
|
|
++ lib.optionals (!canExecute) [
|
|
|
|
|
# Node.js requires matching bitness between build and host platforms, e.g.
|
|
|
|
|
# for V8 startup snapshot builder (see tools/snapshot) and some other
|
|
|
|
|
# tools. We apply a patch that runs these tools using a host platform
|
|
|
|
|
# emulator and avoid cross-compiling altogether (from the build system’s
|
|
|
|
|
# perspective).
|
|
|
|
|
"--emulator=${emulator}"
|
|
|
|
|
]
|
|
|
|
|
++ lib.optionals (lib.versionOlder version "19") [ "--without-dtrace" ]
|
|
|
|
|
++ lib.optionals (!enableNpm) [ "--without-npm" ]
|
|
|
|
|
++ lib.concatMap (name: [
|
|
|
|
|
"--shared-${name}"
|
|
|
|
|
"--shared-${name}-libpath=${lib.getLib sharedLibDeps.${name}}/lib"
|
|
|
|
|
/**
|
|
|
|
|
Closure notes: we explicitly avoid specifying --shared-*-includes,
|
|
|
|
|
as that would put the paths into bin/nodejs.
|
|
|
|
|
Including pkg-config in build inputs would also have the same effect!
|
|
|
|
|
|
|
|
|
|
FIXME: the statement above is outdated, we have to include pkg-config
|
|
|
|
|
in build inputs for system-icu.
|
|
|
|
|
*/
|
|
|
|
|
]) (builtins.attrNames sharedLibDeps);
|
|
|
|
|
|
|
|
|
|
configurePlatforms = [ ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
|
|
|
|
dontDisableStatic = true;
|
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
|
configureScript = writeScript "nodejs-configure" ''
|
|
|
|
|
exec ${python.executable} configure.py "$@"
|
|
|
|
|
'';
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
|
|
2023-04-29 16:46:19 +00:00
|
|
|
|
# Don't allow enabling content addressed conversion as `nodejs`
|
|
|
|
|
# checksums it's image before conversion happens and image loading
|
|
|
|
|
# breaks:
|
|
|
|
|
# $ nix build -f. nodejs --arg config '{ contentAddressedByDefault = true; }'
|
|
|
|
|
# $ ./result/bin/node
|
|
|
|
|
# Check failed: VerifyChecksum(blob).
|
|
|
|
|
__contentAddressed = false;
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
passthru.interpreterName = "nodejs";
|
|
|
|
|
|
2021-12-06 16:07:01 +00:00
|
|
|
|
passthru.pkgs = callPackage ../../node-packages/default.nix {
|
|
|
|
|
nodejs = self;
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
setupHook = ./setup-hook.sh;
|
|
|
|
|
|
|
|
|
|
pos = builtins.unsafeGetAttrPos "version" args;
|
|
|
|
|
|
|
|
|
|
inherit patches;
|
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
|
__darwinAllowLocalNetworking = true; # for tests
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
doCheck = canExecute;
|
|
|
|
|
|
|
|
|
|
# See https://github.com/nodejs/node/issues/22006
|
|
|
|
|
enableParallelChecking = false;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2023-10-09 19:29:22 +00:00
|
|
|
|
# Some dependencies required for tools/doc/node_modules (and therefore
|
|
|
|
|
# test-addons, jstest and others) target are not included in the tarball.
|
|
|
|
|
# Run test targets that do not require network access.
|
2024-07-27 06:49:29 +00:00
|
|
|
|
checkTarget = lib.concatStringsSep " " ([
|
2023-10-09 19:29:22 +00:00
|
|
|
|
"build-js-native-api-tests"
|
|
|
|
|
"build-node-api-tests"
|
|
|
|
|
"tooltest"
|
|
|
|
|
"cctest"
|
2024-07-31 10:19:44 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.buildPlatform.isDarwin || lib.versionAtLeast version "20") [
|
|
|
|
|
# There are some test failures on macOS before v20 that are not worth the
|
|
|
|
|
# time to debug for a version that would be eventually removed in less
|
|
|
|
|
# than a year (Node.js 18 will be EOL at 2025-04-30). Note that these
|
|
|
|
|
# failures are specific to Nix sandbox on macOS and should not affect
|
|
|
|
|
# actual functionality.
|
2024-07-27 06:49:29 +00:00
|
|
|
|
"test-ci-js"
|
|
|
|
|
]);
|
|
|
|
|
|
|
|
|
|
checkFlags = [
|
|
|
|
|
# Do not create __pycache__ when running tests.
|
|
|
|
|
"PYTHONDONTWRITEBYTECODE=1"
|
2024-09-19 14:19:46 +00:00
|
|
|
|
] ++ lib.optionals (stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64) [
|
|
|
|
|
# Python 3.12 introduced a warning for calling `os.fork()` in a
|
|
|
|
|
# multi‐threaded program. For some reason, the Node.js
|
|
|
|
|
# `tools/pseudo-tty.py` program used for PTY‐related tests
|
|
|
|
|
# triggers this warning on Hydra, on `x86_64-darwin` only,
|
|
|
|
|
# despite not creating any threads itself. This causes the
|
|
|
|
|
# Node.js test runner to misinterpret the warnings as part of the
|
|
|
|
|
# test output and fail. It does not reproduce reliably off Hydra
|
|
|
|
|
# on Intel Macs, or occur on the `aarch64-darwin` builds.
|
|
|
|
|
#
|
|
|
|
|
# This seems likely to be related to Rosetta 2, but it could also
|
|
|
|
|
# be some strange x86‐64‐only threading behaviour of the Darwin
|
|
|
|
|
# system libraries, or a bug in CPython, or something else
|
|
|
|
|
# haunted about the Nixpkgs/Hydra build environment. We silence
|
|
|
|
|
# the warnings in the hope that closing our eyes will make the
|
|
|
|
|
# ghosts go away.
|
|
|
|
|
"PYTHONWARNINGS=ignore::DeprecationWarning"
|
2024-07-31 10:19:44 +00:00
|
|
|
|
] ++ lib.optionals (!stdenv.buildPlatform.isDarwin || lib.versionAtLeast version "20") [
|
2024-07-27 06:49:29 +00:00
|
|
|
|
"FLAKY_TESTS=skip"
|
|
|
|
|
# Skip some tests that are not passing in this context
|
2024-07-31 10:19:44 +00:00
|
|
|
|
"CI_SKIP_TESTS=${lib.concatStringsSep "," ([
|
|
|
|
|
"test-child-process-exec-env"
|
|
|
|
|
"test-child-process-uid-gid"
|
|
|
|
|
"test-fs-write-stream-eagain"
|
|
|
|
|
"test-process-euid-egid"
|
|
|
|
|
"test-process-initgroups"
|
|
|
|
|
"test-process-setgroups"
|
|
|
|
|
"test-process-uid-gid"
|
|
|
|
|
"test-setproctitle"
|
|
|
|
|
# This is a bit weird, but for some reason fs watch tests fail with
|
|
|
|
|
# sandbox.
|
|
|
|
|
"test-fs-promises-watch"
|
|
|
|
|
"test-fs-watch"
|
|
|
|
|
"test-fs-watch-encoding"
|
|
|
|
|
"test-fs-watch-non-recursive"
|
|
|
|
|
"test-fs-watch-recursive-add-file"
|
|
|
|
|
"test-fs-watch-recursive-add-file-to-existing-subfolder"
|
|
|
|
|
"test-fs-watch-recursive-add-file-to-new-folder"
|
|
|
|
|
"test-fs-watch-recursive-add-file-with-url"
|
|
|
|
|
"test-fs-watch-recursive-add-folder"
|
|
|
|
|
"test-fs-watch-recursive-assert-leaks"
|
|
|
|
|
"test-fs-watch-recursive-promise"
|
|
|
|
|
"test-fs-watch-recursive-symlink"
|
|
|
|
|
"test-fs-watch-recursive-sync-write"
|
|
|
|
|
"test-fs-watch-recursive-update-file"
|
|
|
|
|
"test-fs-watchfile"
|
|
|
|
|
"test-runner-run"
|
|
|
|
|
"test-runner-watch-mode"
|
|
|
|
|
"test-watch-mode-files_watcher"
|
2024-10-11 05:15:48 +00:00
|
|
|
|
] ++ lib.optionals (!lib.versionAtLeast version "22") [
|
|
|
|
|
"test-tls-multi-key"
|
2024-09-19 14:19:46 +00:00
|
|
|
|
] ++ lib.optionals stdenv.buildPlatform.isDarwin [
|
|
|
|
|
# Disable tests that don’t work under macOS sandbox.
|
|
|
|
|
"test-macos-app-sandbox"
|
|
|
|
|
"test-os"
|
|
|
|
|
"test-os-process-priority"
|
|
|
|
|
] ++ lib.optionals (stdenv.buildPlatform.isDarwin && stdenv.buildPlatform.isx86_64) [
|
|
|
|
|
# These tests fail on x86_64-darwin (even without sandbox).
|
|
|
|
|
# TODO: revisit at a later date.
|
|
|
|
|
"test-fs-readv"
|
|
|
|
|
"test-fs-readv-sync"
|
2024-10-11 05:15:48 +00:00
|
|
|
|
"test-vm-memleak"
|
2024-07-31 10:19:44 +00:00
|
|
|
|
])}"
|
2023-10-09 19:29:22 +00:00
|
|
|
|
];
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
postInstall = ''
|
2023-10-09 19:29:22 +00:00
|
|
|
|
HOST_PATH=$out/bin patchShebangs --host $out
|
2020-04-24 23:36:52 +00:00
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
${lib.optionalString canExecute ''
|
|
|
|
|
$out/bin/node --completion-bash > node.bash
|
|
|
|
|
installShellCompletion node.bash
|
2024-07-27 06:49:29 +00:00
|
|
|
|
''}
|
|
|
|
|
|
2024-09-19 14:19:46 +00:00
|
|
|
|
${lib.optionalString enableNpm ''
|
2023-10-09 19:29:22 +00:00
|
|
|
|
mkdir -p $out/share/bash-completion/completions
|
|
|
|
|
ln -s $out/lib/node_modules/npm/lib/utils/completion.sh \
|
|
|
|
|
$out/share/bash-completion/completions/npm
|
2020-04-24 23:36:52 +00:00
|
|
|
|
for dir in "$out/lib/node_modules/npm/man/"*; do
|
|
|
|
|
mkdir -p $out/share/man/$(basename "$dir")
|
|
|
|
|
for page in "$dir"/*; do
|
|
|
|
|
ln -rs $page $out/share/man/$(basename "$dir")
|
|
|
|
|
done
|
|
|
|
|
done
|
|
|
|
|
''}
|
|
|
|
|
|
|
|
|
|
# install the missing headers for node-gyp
|
2024-09-19 14:19:46 +00:00
|
|
|
|
# TODO: add dev output and use propagatedBuildInputs instead of copying headers.
|
2023-02-02 18:25:31 +00:00
|
|
|
|
cp -r ${lib.concatStringsSep " " copyLibHeaders} $out/include/node
|
2021-12-19 01:06:50 +00:00
|
|
|
|
|
|
|
|
|
# assemble a static v8 library and put it in the 'libv8' output
|
|
|
|
|
mkdir -p $libv8/lib
|
2024-09-19 14:19:46 +00:00
|
|
|
|
pushd out/Release/obj
|
2024-10-11 05:15:48 +00:00
|
|
|
|
find . -path "**/torque_*/**/*.o" -or -path "**/v8*/**/*.o" \
|
|
|
|
|
-and -not -name "torque.*" \
|
|
|
|
|
-and -not -name "mksnapshot.*" \
|
|
|
|
|
-and -not -name "gen-regexp-special-case.*" \
|
|
|
|
|
-and -not -name "bytecode_builtins_list_generator.*" \
|
|
|
|
|
| sort -u >files
|
|
|
|
|
test -s files # ensure that the list is not empty
|
2024-09-19 14:19:46 +00:00
|
|
|
|
$AR -cqs $libv8/lib/libv8.a @files
|
2021-12-19 01:06:50 +00:00
|
|
|
|
popd
|
|
|
|
|
|
|
|
|
|
# copy v8 headers
|
|
|
|
|
cp -r deps/v8/include $libv8/
|
|
|
|
|
|
|
|
|
|
# create a pkgconfig file for v8
|
|
|
|
|
major=$(grep V8_MAJOR_VERSION deps/v8/include/v8-version.h | cut -d ' ' -f 3)
|
|
|
|
|
minor=$(grep V8_MINOR_VERSION deps/v8/include/v8-version.h | cut -d ' ' -f 3)
|
|
|
|
|
patch=$(grep V8_PATCH_LEVEL deps/v8/include/v8-version.h | cut -d ' ' -f 3)
|
|
|
|
|
mkdir -p $libv8/lib/pkgconfig
|
|
|
|
|
cat > $libv8/lib/pkgconfig/v8.pc << EOF
|
|
|
|
|
Name: v8
|
|
|
|
|
Description: V8 JavaScript Engine
|
|
|
|
|
Version: $major.$minor.$patch
|
2023-07-15 17:15:38 +00:00
|
|
|
|
Libs: -L$libv8/lib -lv8 -pthread -licui18n -licuuc
|
2021-12-19 01:06:50 +00:00
|
|
|
|
Cflags: -I$libv8/include
|
|
|
|
|
EOF
|
2020-04-24 23:36:52 +00:00
|
|
|
|
'';
|
|
|
|
|
|
2024-07-31 10:19:44 +00:00
|
|
|
|
passthru.tests = {
|
|
|
|
|
version = testers.testVersion {
|
|
|
|
|
package = self;
|
|
|
|
|
version = "v${version}";
|
|
|
|
|
};
|
|
|
|
|
};
|
|
|
|
|
|
2020-04-24 23:36:52 +00:00
|
|
|
|
passthru.updateScript = import ./update.nix {
|
|
|
|
|
inherit writeScript coreutils gnugrep jq curl common-updater-scripts gnupg nix runtimeShell;
|
2021-02-05 17:12:51 +00:00
|
|
|
|
inherit lib;
|
2020-04-24 23:36:52 +00:00
|
|
|
|
inherit majorVersion;
|
|
|
|
|
};
|
|
|
|
|
|
2023-02-02 18:25:31 +00:00
|
|
|
|
meta = with lib; {
|
2020-04-24 23:36:52 +00:00
|
|
|
|
description = "Event-driven I/O framework for the V8 JavaScript engine";
|
|
|
|
|
homepage = "https://nodejs.org";
|
2021-10-17 09:34:42 +00:00
|
|
|
|
changelog = "https://github.com/nodejs/node/releases/tag/v${version}";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
license = licenses.mit;
|
2024-07-27 06:49:29 +00:00
|
|
|
|
maintainers = with maintainers; [ aduh95 ];
|
2020-04-24 23:36:52 +00:00
|
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2021-05-03 20:48:10 +00:00
|
|
|
|
mainProgram = "node";
|
2023-05-24 13:37:59 +00:00
|
|
|
|
knownVulnerabilities = optional (versionOlder version "18") "This NodeJS release has reached its end of life. See https://nodejs.org/en/about/releases/.";
|
2020-04-24 23:36:52 +00:00
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
passthru.python = python; # to ensure nodeEnv uses the same version
|
2024-07-27 06:49:29 +00:00
|
|
|
|
});
|
|
|
|
|
in package
|