From e730069542cbafd78758a4f44998bef4f610a1cf Mon Sep 17 00:00:00 2001 From: figsoda Date: Sun, 14 May 2023 16:09:51 -0400 Subject: [PATCH] strace-analyzer: fix build on aarch64-linux --- pkgs/development/tools/misc/strace-analyzer/default.nix | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/pkgs/development/tools/misc/strace-analyzer/default.nix b/pkgs/development/tools/misc/strace-analyzer/default.nix index a4de71138d9e..8670d9b2f8fe 100644 --- a/pkgs/development/tools/misc/strace-analyzer/default.nix +++ b/pkgs/development/tools/misc/strace-analyzer/default.nix @@ -2,6 +2,7 @@ , rustPlatform , fetchFromGitHub , strace +, stdenv }: rustPlatform.buildRustPackage rec { @@ -19,6 +20,11 @@ rustPlatform.buildRustPackage rec { nativeCheckInputs = [ strace ]; + checkFlags = lib.optionals stdenv.isAarch64 [ + # thread 'analysis::tests::analyze_dd' panicked at 'assertion failed: ...' + "--skip=analysis::tests::analyze_dd" + ]; + meta = with lib; { description = "Analyzes strace output"; homepage = "https://github.com/wookietreiber/strace-analyzer";