Merge pull request #231907 from figsoda/strace

strace-analyzer: fix build on aarch64-linux
This commit is contained in:
Sandro 2023-05-15 00:18:18 +02:00 committed by GitHub
commit d7de02dd0b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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";