obs-studio: Disable x86_64 only features on aarch64

Fixes the aarch64-linux build: https://hydra.nixos.org/build/245937700/nixlog/2/tail
QSV is the Intel Quick Sync Video hardware encoder.
This commit is contained in:
Raphael Robatsch 2024-01-10 20:43:05 +01:00
parent 5e2375d73e
commit 58d2729d1a

View File

@ -139,6 +139,7 @@ stdenv.mkDerivation (finalAttrs: {
"-DBUILD_BROWSER=ON"
"-DCEF_ROOT_DIR=../../cef"
"-DENABLE_JACK=ON"
(lib.cmakeBool "ENABLE_QSV11" stdenv.hostPlatform.isx86_64)
];
dontWrapGApps = true;