mdns: fix configure with cmake4 (#449867)

This commit is contained in:
Martin Weinelt
2025-10-08 10:58:45 +00:00
committed by GitHub
+5
View File
@@ -20,6 +20,11 @@ stdenv.mkDerivation rec {
cmake
];
cmakeFlags = [
# Fix configure with cmake4
(lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "3.10")
];
meta = with lib; {
description = "Public domain mDNS/DNS-SD library in C";
homepage = "https://github.com/mjansson/mdns";