oggvideotools: fix build against CMake >= 4.0

This commit is contained in:
Martin Joerg
2025-10-06 12:30:28 +00:00
parent 82154aeb1e
commit 469520e23d

View File

@@ -59,6 +59,11 @@ stdenv.mkDerivation rec {
libvorbis
];
cmakeFlags = [
# fix compatibility with CMake (https://cmake.org/cmake/help/v4.0/command/cmake_minimum_required.html)
(lib.cmakeFeature "CMAKE_POLICY_VERSION_MINIMUM" "4.0")
];
meta = with lib; {
description = "Toolbox for manipulating and creating Ogg video files";
homepage = "http://www.streamnik.de/oggvideotools.html";