nodejs: use system icu
Use the system icu for building nodejs. Fixes #62365
This commit is contained in:
parent
67abc01e4c
commit
b30e1d6d9b
1 changed files with 7 additions and 5 deletions
|
@ -4,7 +4,7 @@
|
|||
, writeScript, coreutils, gnugrep, jq, curl, common-updater-scripts, nix, runtimeShell
|
||||
, gnupg
|
||||
, darwin, xcbuild
|
||||
, procps
|
||||
, procps, icu
|
||||
}:
|
||||
|
||||
with stdenv.lib;
|
||||
|
@ -30,7 +30,9 @@ let
|
|||
* as that would put the paths into bin/nodejs.
|
||||
* Including pkgconfig in build inputs would also have the same effect!
|
||||
*/
|
||||
]) (builtins.attrNames sharedLibDeps);
|
||||
]) (builtins.attrNames sharedLibDeps) ++ [
|
||||
"--with-intl=system-icu"
|
||||
];
|
||||
|
||||
copyLibHeaders =
|
||||
map
|
||||
|
@ -51,10 +53,10 @@ in
|
|||
};
|
||||
|
||||
buildInputs = optionals stdenv.isDarwin [ CoreServices ApplicationServices ]
|
||||
++ [ python2 zlib libuv openssl http-parser ];
|
||||
++ [ python2 zlib libuv openssl http-parser icu ];
|
||||
|
||||
nativeBuildInputs = [ which utillinux ]
|
||||
++ optionals stdenv.isDarwin [ pkgconfig xcbuild ];
|
||||
nativeBuildInputs = [ which utillinux pkgconfig ]
|
||||
++ optionals stdenv.isDarwin [ xcbuild ];
|
||||
|
||||
configureFlags = sharedConfigureFlags ++ [ "--without-dtrace" ] ++ extraConfigFlags;
|
||||
|
||||
|
|
Loading…
Reference in a new issue