File tree Expand file tree Collapse file tree 2 files changed +4
-9
lines changed
Expand file tree Collapse file tree 2 files changed +4
-9
lines changed Original file line number Diff line number Diff line change 66 loadJSBuiltinsDynamically ? true , # Load `lib/**.js` from disk instead of embedding
77 ninja ? pkgs . ninja ,
88 extraConfigFlags ? [
9- "--without-npm"
109 "--debug-node"
1110 ] ,
1211
@@ -87,13 +86,9 @@ pkgs.mkShell {
8786 ++ pkgs . lib . optional ( ninja != null ) "--ninja"
8887 ++ pkgs . lib . optional loadJSBuiltinsDynamically "--node-builtin-modules-path=${ builtins . toString ./. } "
8988 ++ pkgs . lib . concatMap ( name : [
90- "--shared-${ builtins . replaceStrings [ "c-ares" ] [ "cares" ] name } "
91- "--shared-${ builtins . replaceStrings [ "c-ares" ] [ "cares" ] name } -libpath=${
92- pkgs . lib . getLib sharedLibDeps . ${ name }
93- } /lib"
94- "--shared-${ builtins . replaceStrings [ "c-ares" ] [ "cares" ] name } -include=${
95- pkgs . lib . getInclude sharedLibDeps . ${ name }
96- } /include"
89+ "--shared-${ name } "
90+ "--shared-${ name } -libpath=${ pkgs . lib . getLib sharedLibDeps . ${ name } } /lib"
91+ "--shared-${ name } -include=${ pkgs . lib . getInclude sharedLibDeps . ${ name } } /include"
9792 ] ) ( builtins . attrNames sharedLibDeps )
9893 ) ;
9994 NOSQLITE = pkgs . lib . optionalString ( ! withSQLite ) "1" ;
Original file line number Diff line number Diff line change 88 inherit ( pkgs )
99 ada
1010 brotli
11- c-ares
1211 gtest
1312 libuv
1413 nbytes
2019 zlib
2120 zstd
2221 ;
22+ cares = pkgs . c-ares ;
2323 hdr-histogram = pkgs . hdrhistogram_c ;
2424 http-parser = pkgs . llhttp ;
2525 nghttp2 = pkgs . nghttp2 . overrideAttrs {
You can’t perform that action at this time.
0 commit comments