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

This release supports eventfd, so the patched `libuv` can be omitted. Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
5 lines
174 B
Nix
5 lines
174 B
Nix
{ nodejs_18, enableNpm ? false }:
|
|
nodejs_18.overrideAttrs (prevAttrs: {
|
|
inherit enableNpm;
|
|
configureFlags = prevAttrs.configureFlags ++ [ "--without-node-snapshot" ];
|
|
})
|