webrtc-audio-processing: add arm to supported platforms

This fixes ffmpeg-full on native armv7l-linux
This commit is contained in:
misuzu 2023-03-14 14:55:12 +02:00
parent 7943ea66b6
commit 3f0518f306

View File

@ -26,6 +26,6 @@ stdenv.mkDerivation rec {
license = licenses.bsd3;
# https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/blob/v0.3.1/webrtc/rtc_base/system/arch.h
# + our patches
platforms = intersectLists platforms.unix (platforms.aarch64 ++ platforms.mips ++ platforms.power ++ platforms.riscv ++ platforms.x86);
platforms = intersectLists platforms.unix (platforms.arm ++ platforms.aarch64 ++ platforms.mips ++ platforms.power ++ platforms.riscv ++ platforms.x86);
};
}