Merge pull request #233258 from figsoda/critcmp

critcmp: init at 0.1.7
This commit is contained in:
Ilan Joselevich 2023-05-22 21:59:05 +03:00 committed by GitHub
commit 317c4cfe9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
{ lib
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "critcmp";
version = "0.1.7";
src = fetchFromGitHub {
owner = "BurntSushi";
repo = "critcmp";
rev = version;
hash = "sha256-B9unlodAhdmRogHX7tqky320xpaUG2p8nRZS7uGOXGY=";
};
cargoHash = "sha256-Y1vfUOwCWAjMnNlm40XM9sQvooVtnGETTpIIsN/HTOU=";
meta = with lib; {
description = "A command line tool for comparing benchmarks run by Criterion";
homepage = "https://github.com/BurntSushi/critcmp";
license = with licenses; [ mit unlicense ];
maintainers = with maintainers; [ figsoda ];
};
}

View File

@ -16501,6 +16501,8 @@ with pkgs;
crate2nix = callPackage ../development/tools/rust/crate2nix { };
critcmp = callPackage ../development/tools/rust/critcmp { };
convco = callPackage ../development/tools/convco {
inherit (darwin.apple_sdk.frameworks) Security;
};