strace: disable mpers (multiple personality) support on aarch64 to fix

https://hydra.nixos.org/build/69542376

[dezgeg: changed to --enable-mpers=check instead of --enable-mpers=no,
which makes it probe at build-time whether a certain personality is
supported and enable it only if the probe succeeded, instead of
unconditionally disabling it. Should be more future-proof.]

authored by Will Dietz and committed by Tuomas Tynkkynen 8989a6b0 a65221e5

+2
+2
pkgs/development/tools/misc/strace/default.nix
··· 13 14 buildInputs = [ libunwind ]; # support -k 15 16 meta = with stdenv.lib; { 17 homepage = http://strace.sourceforge.net/; 18 description = "A system call tracer for Linux";
··· 13 14 buildInputs = [ libunwind ]; # support -k 15 16 + configureFlags = stdenv.lib.optional stdenv.hostPlatform.isAarch64 "--enable-mpers=check"; 17 + 18 meta = with stdenv.lib; { 19 homepage = http://strace.sourceforge.net/; 20 description = "A system call tracer for Linux";