Merge pull request #231907 from figsoda/strace

strace-analyzer: fix build on aarch64-linux

authored by Sandro and committed by GitHub d7de02dd e68bb9dc

+6
+6
pkgs/development/tools/misc/strace-analyzer/default.nix
··· 2 2 , rustPlatform 3 3 , fetchFromGitHub 4 4 , strace 5 + , stdenv 5 6 }: 6 7 7 8 rustPlatform.buildRustPackage rec { ··· 18 19 cargoHash = "sha256-3OS3LEEk58+IJDQrgwo+BJq6hblojk22QxDtZY5ofA4="; 19 20 20 21 nativeCheckInputs = [ strace ]; 22 + 23 + checkFlags = lib.optionals stdenv.isAarch64 [ 24 + # thread 'analysis::tests::analyze_dd' panicked at 'assertion failed: ...' 25 + "--skip=analysis::tests::analyze_dd" 26 + ]; 21 27 22 28 meta = with lib; { 23 29 description = "Analyzes strace output";