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 , rustPlatform 3 , fetchFromGitHub 4 , strace 5 }: 6 7 rustPlatform.buildRustPackage rec { ··· 18 cargoHash = "sha256-3OS3LEEk58+IJDQrgwo+BJq6hblojk22QxDtZY5ofA4="; 19 20 nativeCheckInputs = [ strace ]; 21 22 meta = with lib; { 23 description = "Analyzes strace output";
··· 2 , rustPlatform 3 , fetchFromGitHub 4 , strace 5 + , stdenv 6 }: 7 8 rustPlatform.buildRustPackage rec { ··· 19 cargoHash = "sha256-3OS3LEEk58+IJDQrgwo+BJq6hblojk22QxDtZY5ofA4="; 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 + ]; 27 28 meta = with lib; { 29 description = "Analyzes strace output";