Files
Dark Steveneq 646b892680
Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
push sheeet
2025-10-09 14:15:47 +02:00

45 lines
1.0 KiB
Nix

{
lib,
rustPlatform,
fetchFromGitHub,
replaceVars,
stdenv,
}:
rustPlatform.buildRustPackage rec {
pname = "cargo-benchcmp";
version = "0.4.5";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "cargo-benchcmp";
tag = version;
hash = "sha256-J8KFI0V/mOhUlYtVnFAQgPIpXL9/dLhOFxSly4bR00I=";
};
cargoHash = "sha256-Dpn3MbU56zX4vibG0pw5LuQEwvC6Uqzse1GCRHWyAEw=";
patches = [
# patch the binary path so tests can find the binary when `--target` is present
(replaceVars ./fix-test-binary-path.patch {
shortTarget = stdenv.hostPlatform.rust.rustcTarget;
})
];
checkFlags = [
# thread 'different_input_colored' panicked at 'assertion failed: `(left == right)`
"--skip=different_input_colored"
];
meta = with lib; {
description = "Small utility to compare Rust micro-benchmarks";
mainProgram = "cargo-benchcmp";
homepage = "https://github.com/BurntSushi/cargo-benchcmp";
license = with licenses; [
mit
unlicense
];
maintainers = with maintainers; [ figsoda ];
};
}