nixpkgs/pkgs/tools/misc/hyperfine/default.nix

28 lines
740 B
Nix
Raw Normal View History

2018-10-02 21:41:48 +00:00
{ stdenv, fetchFromGitHub, rustPlatform
, Security
}:
2018-06-11 22:10:56 +00:00
rustPlatform.buildRustPackage rec {
2019-06-09 09:36:12 +00:00
pname = "hyperfine";
2020-05-28 04:19:29 +00:00
version = "1.10.0";
src = fetchFromGitHub {
owner = "sharkdp";
2019-06-09 09:36:12 +00:00
repo = pname;
rev = "refs/tags/v${version}";
2020-05-28 04:19:29 +00:00
sha256 = "0389lmyipmm4irrl39zw2748f2sdddfzwms4i4763xdykdvi8b57";
};
2020-05-28 04:19:29 +00:00
cargoSha256 = "06scvp7x1yixdadarsm461hbc256spx4aqhmjjn72x7hxn22h9cg";
2018-10-02 21:41:48 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
meta = with stdenv.lib; {
description = "Command-line benchmarking tool";
2019-11-30 21:12:50 +00:00
homepage = "https://github.com/sharkdp/hyperfine";
license = with licenses; [ asl20 /* or */ mit ];
maintainers = [ maintainers.thoughtpolice ];
platforms = platforms.all;
};
}