chore(deps): update dependencies and configs

- Update nixpkgs to 25.05 and Node.js to version 24.
- Adjust SGX SDK build flags to suppress additional warnings.
- Disable parallel building for SGX SDK due to Intel constraints.

Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
This commit is contained in:
Harald Hoyer 2025-05-30 14:45:09 +02:00
parent 788ff52330
commit 5d19952748
Signed by: harald
GPG key ID: F519A1143B3FBE32
5 changed files with 16 additions and 14 deletions

View file

@ -1,5 +1,5 @@
{ nodejs_18, enableNpm ? false }:
nodejs_18.overrideAttrs (prevAttrs: {
{ nodejs_24, enableNpm ? false }:
nodejs_24.overrideAttrs (prevAttrs: {
inherit enableNpm;
configureFlags = prevAttrs.configureFlags ++ [ "--without-node-snapshot" ];
})