mdns: fix configure with cmake 4

This commit is contained in:
Martin Weinelt
2025-10-08 12:52:11 +02:00
parent 8c77702a82
commit 125042abed
+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";