mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-27 15:23:26 +00:00
571c71e6f7
We are migrating packages that meet below requirements: 1. using `callPackage` 2. called path is a directory 3. overriding set is empty (`{ }`) 4. not containing path expressions other than relative path (to makenixpkgs-vet happy) 5. not referenced by nix files outside of the directory, other than`pkgs/top-level/all-packages.nix` 6. not referencing nix files outside of the directory 7. not referencing `default.nix` (since it's changed to `package.nix`) 8. `outPath` doesn't change after migration The tool is here: https://github.com/Aleksanaa/by-name-migrate.
42 lines
1.0 KiB
Nix
42 lines
1.0 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, substituteAll
|
|
, stdenv
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "cargo-benchcmp";
|
|
version = "0.4.5";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "BurntSushi";
|
|
repo = "cargo-benchcmp";
|
|
rev = version;
|
|
hash = "sha256-J8KFI0V/mOhUlYtVnFAQgPIpXL9/dLhOFxSly4bR00I=";
|
|
};
|
|
|
|
cargoHash = "sha256-2V9ILHnDsUI+x3f5o+V7p8rPUKf33PAkpyTabCPdd0g=";
|
|
|
|
patches = [
|
|
# patch the binary path so tests can find the binary when `--target` is present
|
|
(substituteAll {
|
|
src = ./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 ];
|
|
};
|
|
}
|