yuzu-early-access: remove -Werror to work around deprecated functions in depdendent libraries

This commit is contained in:
Mathieu Rene 2023-03-29 08:24:37 -04:00
parent be3f50fd25
commit 31676758a7

View file

@ -87,6 +87,11 @@ stdenv.mkDerivation rec {
# making the build fail, as that path does not exist
dontFixCmake = true;
# -Werror causes build failures for deprecation warnings introduced by transitive dependency updates
postPatch = ''
sed -i '/-Werror/d' src/common/CMakeLists.txt
'';
cmakeFlags = [
"-DYUZU_USE_BUNDLED_QT=OFF"
"-DYUZU_USE_BUNDLED_FFMPEG=OFF"