24 lines
679 B
Nix
24 lines
679 B
Nix
{ stdenv, fetchFromGitHub, rustPlatform }:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
name = "hyperfine-${version}";
|
|
version = "1.1.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sharkdp";
|
|
repo = "hyperfine";
|
|
rev = "refs/tags/v${version}";
|
|
sha256 = "13h43sjp059yq3bmdbb9i1082fkx5yzmhrkf5kpkxhnyn67xbdsg";
|
|
};
|
|
|
|
cargoSha256 = "0saf0hl21ba2ckqbsw64908nvs0x1rjrnm73ackzpmv5pi9j567s";
|
|
|
|
meta = with stdenv.lib; {
|
|
description = "Command-line benchmarking tool";
|
|
homepage = https://github.com/sharkdp/hyperfine;
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
maintainers = [ maintainers.thoughtpolice ];
|
|
platforms = platforms.all;
|
|
};
|
|
}
|