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