libev: fix cygwin build (#468197)

This commit is contained in:
John Ericson
2025-12-05 20:13:31 +00:00
committed by GitHub
+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 ];