mirror of
https://github.com/matter-labs/nixsgx.git
synced 2025-07-21 07:33:55 +02:00
9 lines
155 B
Nix
9 lines
155 B
Nix
{ lib
|
|
, libuv
|
|
}:
|
|
libuv.overrideAttrs (prevAttrs: {
|
|
separateDebugInfo = false;
|
|
patches = (prevAttrs.patches or [ ]) ++ [
|
|
./no-eventfd.patch
|
|
];
|
|
})
|