94427deb9d
GitOrigin-RevId: f91ee3065de91a3531329a674a45ddcb3467a650
41 lines
1 KiB
Nix
41 lines
1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, rust
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-benchcmp";
|
|
version = "0.4.4";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BurntSushi";
|
|
repo = "cargo-benchcmp";
|
|
rev = version;
|
|
hash = "sha256-pg3/VUC1DQ7GbSQDfVZ0WNisXvzXy0O0pr2ik2ar2h0=";
|
|
};
|
|
|
|
cargoHash = "sha256-vxy9Ym3Twx034I1E5fWNnbP1ttfLolMbO1IgRiPfhRw=";
|
|
|
|
patches = [
|
|
# patch the binary path so tests can find the binary when `--target` is present
|
|
(substituteAll {
|
|
src = ./fix-test-binary-path.patch;
|
|
shortTarget = rust.toRustTarget stdenv.hostPlatform;
|
|
})
|
|
];
|
|
|
|
checkFlags = [
|
|
# thread 'different_input_colored' panicked at 'assertion failed: `(left == right)`
|
|
"--skip=different_input_colored"
|
|
];
|
|
|
|
meta = with lib; {
|
|
description = "A small utility to compare Rust micro-benchmarks";
|
|
homepage = "https://github.com/BurntSushi/cargo-benchcmp";
|
|
license = with licenses; [ mit unlicense ];
|
|
maintainers = with maintainers; [ figsoda ];
|
|
};
|
|
}
|