at 24.05-pre 34 lines 820 B view raw
1{ lib 2, rustPlatform 3, fetchFromGitHub 4, strace 5, stdenv 6}: 7 8rustPlatform.buildRustPackage rec { 9 pname = "strace-analyzer"; 10 version = "0.5.2"; 11 12 src = fetchFromGitHub { 13 owner = "wookietreiber"; 14 repo = pname; 15 rev = "v${version}"; 16 sha256 = "sha256-wx0/Jb2uaS1qdRQymfE00IEOyfgLtD4lXYasaJgcoxo="; 17 }; 18 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"; 30 homepage = "https://github.com/wookietreiber/strace-analyzer"; 31 license = licenses.gpl3Plus; 32 maintainers = with maintainers; [ figsoda ]; 33 }; 34}