Merge pull request #142416 from figsoda/update-hyperfine

hyperfine: 1.11.0 -> 1.12.0, add figsoda as a maintainer
conduit-nginx
figsoda 2021-10-20 18:28:01 -04:00 committed by GitHub
commit f836e43030
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 12 additions and 7 deletions

View File

@ -1,17 +1,21 @@
{ lib, stdenv, fetchCrate, rustPlatform, installShellFiles
{ lib
, rustPlatform
, fetchCrate
, installShellFiles
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "hyperfine";
version = "1.11.0";
version = "1.12.0";
src = fetchCrate {
inherit pname version;
sha256 = "0dla2jzwcxkdx3n4fqkkh6wirqs2f31lvqsw2pjf1jbnnif54mzh";
sha256 = "sha256-Vs754nvtYV5d736xsZ2foawfxMc25bUfMhm8Vxqxw6U=";
};
cargoSha256 = "13dd5x0mr1pqcba48w9v5jjpddapd7gk34d4bysbjqsriwpbrdgp";
cargoSha256 = "sha256-X9WFnKP2+GM8V1kyd5VxpwBXql8Be5mugBVGrYdSsaM=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.isDarwin Security;
@ -26,8 +30,9 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Command-line benchmarking tool";
homepage = "https://github.com/sharkdp/hyperfine";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = [ maintainers.thoughtpolice ];
homepage = "https://github.com/sharkdp/hyperfine";
changelog = "https://github.com/sharkdp/hyperfine/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = with maintainers; [ figsoda thoughtpolice ];
};
}