nodejs_22: 22.11.0 -> 22.12.0 (#361565)

authored by Antoine du Hamel and committed by GitHub e4f44407 b00dfff9

+4 -11
+2
pkgs/development/libraries/sqlite/default.nix
··· 51 51 "-DSQLITE_ENABLE_FTS3_TOKENIZER" 52 52 "-DSQLITE_ENABLE_FTS4" 53 53 "-DSQLITE_ENABLE_FTS5" 54 + "-DSQLITE_ENABLE_PREUPDATE_HOOK" 54 55 "-DSQLITE_ENABLE_RTREE" 56 + "-DSQLITE_ENABLE_SESSION" 55 57 "-DSQLITE_ENABLE_STMT_SCANSTATUS" 56 58 "-DSQLITE_ENABLE_UNLOCK_NOTIFY" 57 59 "-DSQLITE_SOUNDEX"
+2 -11
pkgs/development/web/nodejs/v22.nix
··· 8 8 in 9 9 buildNodejs { 10 10 inherit enableNpm; 11 - version = "22.11.0"; 12 - sha256 = "bbf0297761d53aefda9d7855c57c7d2c272b83a7b5bad4fea9cb29006d8e1d35"; 11 + version = "22.12.0"; 12 + sha256 = "fe1bc4be004dc12721ea2cb671b08a21de01c6976960ef8a1248798589679e16"; 13 13 patches = [ 14 14 ./configure-emulator.patch 15 15 ./configure-armv6-vfpv2.patch ··· 22 22 # Fix for https://github.com/NixOS/nixpkgs/issues/355919 23 23 # FIXME: remove after a minor point release 24 24 (fetchpatch2 { 25 - url = "https://github.com/nodejs/node/commit/a094a8166cd772f89e92b5deef168e5e599fa815.patch?full_index=1"; 26 - hash = "sha256-5FZfozYWRa1ZI/f+e+xpdn974Jg2DbiHbua13XUQP5E="; 27 - }) 28 - (fetchpatch2 { 29 25 url = "https://github.com/nodejs/node/commit/f270462c09ddfd770291a7c8a2cd204b2c63d730.patch?full_index=1"; 30 26 hash = "sha256-Err0i5g7WtXcnhykKgrS3ocX7/3oV9UrT0SNeRtMZNU="; 31 - }) 32 - # Patch to use the shared version of SQLite instead of the one vendored upstream: 33 - (fetchpatch2 { 34 - url = "https://github.com/nodejs/node/commit/32f7d5ad1cf79e7e731e1bb7ac967f4f2a3194cf.patch?full_index=1"; 35 - hash = "sha256-dyUr3caGfetrXgfAl+CLE1LKKetDZCpPwMg4EM98rqI="; 36 27 }) 37 28 # fixes test failure, remove when included in release 38 29 (fetchpatch2 {