libev: fix cygwin build

This commit is contained in:
David McFarland
2025-12-05 16:07:28 -04:00
parent c6277c3819
commit 7e5a44f95b
+4
View File
@@ -25,6 +25,10 @@ stdenv.mkDerivation rec {
configureFlags = lib.optional static "LDFLAGS=-static";
makeFlags =
# doing this in configureFlags causes configure to fail
lib.optional (!static && stdenv.hostPlatform.isCygwin) "LDFLAGS=-no-undefined";
meta = {
description = "High-performance event loop/event model with lots of features";
maintainers = [ lib.maintainers.raskin ];