lol

webrtc-audio-processing: Fix ARM breakage

+6
+6
pkgs/development/libraries/webrtc-audio-processing/default.nix
··· 8 8 sha256 = "1yl0187xjh1j2zkb7v9cs9i868zcaj23pzn4a36qhzam9wfjjvkm"; 9 9 }; 10 10 11 + # Avoid this error: 12 + # signal_processing/filter_ar_fast_q12_armv7.S:88: Error: selected processor does not support `sbfx r11,r6,#12,#16' in ARM mode 13 + patchPhase = stdenv.lib.optionalString stdenv.isArm '' 14 + substituteInPlace configure --replace 'armv7*|armv8*' 'disabled' 15 + ''; 16 + 11 17 meta = with stdenv.lib; { 12 18 homepage = http://www.freedesktop.org/software/pulseaudio/webrtc-audio-processing; 13 19 description = "A more Linux packaging friendly copy of the AudioProcessing module from the WebRTC project";