nixsgx/packages/nodejs/default.nix
Harald Hoyer 5d19952748
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>
2025-05-30 16:06:57 +02:00

5 lines
174 B
Nix

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