ilbc: fix build with cmake 4

This commit is contained in:
Naxdy
2025-10-08 16:50:05 +02:00
parent 4259a9ca28
commit d999f683b7

View File

@@ -25,6 +25,11 @@ stdenv.mkDerivation rec {
cp -v ${./CMakeLists.txt} CMakeLists.txt
'';
# Fixes the build with CMake 4
cmakeFlags = [
"-DCMAKE_POLICY_VERSION_MINIMUM=3.5"
];
meta = {
platforms = lib.platforms.unix;
};