webrtc-audio-processing_1: tighten platforms

Only supports an explicitly-enumerated list of platforms.
This matches what we do for webrtc-audio-processing_0_3.

+2 -1
+2 -1
pkgs/development/libraries/webrtc-audio-processing/default.nix
··· 53 53 homepage = "https://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing"; 54 54 description = "A more Linux packaging friendly copy of the AudioProcessing module from the WebRTC project"; 55 55 license = licenses.bsd3; 56 - platforms = platforms.unix; 56 + # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/blob/master/webrtc/rtc_base/system/arch.h 57 + platforms = intersectLists platforms.unix (platforms.arm ++ platforms.aarch64 ++ platforms.mips ++ platforms.power ++ platforms.riscv ++ platforms.x86); 57 58 # BE platforms are unsupported 58 59 # https://gitlab.freedesktop.org/pulseaudio/webrtc-audio-processing/-/issues/31 59 60 badPlatforms = platforms.bigEndian;