mirror of
https://github.com/matter-labs/nixsgx.git
synced 2025-07-21 07:33:55 +02:00

- 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>
5 lines
174 B
Nix
5 lines
174 B
Nix
{ nodejs_24, enableNpm ? false }:
|
|
nodejs_24.overrideAttrs (prevAttrs: {
|
|
inherit enableNpm;
|
|
configureFlags = prevAttrs.configureFlags ++ [ "--without-node-snapshot" ];
|
|
})
|