stuntrally: fix build with boost 1.89

This commit is contained in:
Rafael Ieda
2026-02-26 04:30:32 -03:00
parent 26eaeac4e4
commit 72bc7bff1c
+5
View File
@@ -51,6 +51,11 @@ stdenv.mkDerivation (finalAttrs: {
substituteInPlace src/vdrift/paths.cpp \
--replace-fail "@GAME_DATA_DIR@" "$out/share/stuntrally3/data" \
--replace-fail "@GAME_CONFIG_DIR@" "$out/share/stuntrally3/config"
# Fix build with boost 1.89
substituteInPlace CMake/AddMissingTargets.cmake --replace-fail \
'find_package(Boost REQUIRED COMPONENTS system thread filesystem)' \
'find_package(Boost REQUIRED COMPONENTS thread filesystem)'
'';
strictDeps = true;