File tree 1 file changed +9
-1
lines changed
pkgs/development/web/nodejs
1 file changed +9
-1
lines changed Original file line number Diff line number Diff line change 8
8
, gnupg
9
9
, darwin
10
10
, installShellFiles
11
+ , fetchpatch
11
12
} :
12
13
13
14
{ enableNpm ? true , version , sha256 , patches ? [ ] } @args :
249
250
250
251
pos = builtins . unsafeGetAttrPos "version" args ;
251
252
252
- inherit patches ;
253
+ patches = patches ++ [
254
+ # fixes test failure
255
+ ( fetchpatch {
256
+ url = "https://github.com/nodejs/node/commit/b6fe731c55eb4cb9d14042a23e5002ed39b7c8b7.patch" ;
257
+ hash = "sha256-y45G9Vc58Nh0I+kSS3iRnoZe7se55rk3PVMpgZgPY+U=" ;
258
+ } )
259
+ ] ;
253
260
254
261
__darwinAllowLocalNetworking = true ; # for tests
255
262
299
306
"FLAKY_TESTS=skip"
300
307
# Skip some tests that are not passing in this context
301
308
"CI_SKIP_TESTS=${ lib . concatStringsSep "," ( [
309
+ # Tests don't work in sandbox.
302
310
"test-child-process-exec-env"
303
311
"test-child-process-uid-gid"
304
312
"test-fs-write-stream-eagain"
You can’t perform that action at this time.
0 commit comments