mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-04-15 20:07:59 +00:00
Merge pull request #231907 from figsoda/strace
strace-analyzer: fix build on aarch64-linux
This commit is contained in:
commit
d7de02dd0b
@ -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";
|
||||
|
Loading…
Reference in New Issue
Block a user