nixsgx/packages/libuv/default.nix
Harald Hoyer 1054e3dbe4
feat: initial commit
Signed-off-by: Harald Hoyer <harald@matterlabs.dev>
2024-02-07 11:25:05 +01:00

10 lines
192 B
Nix

{ lib
, libuv
}:
libuv.overrideAttrs (prevAttrs: {
separateDebugInfo = false;
patches = (prevAttrs.patches or [ ]) ++ [
./no-getifaddr.patch
./no-eventfd.patch
];
})