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

28 lines
739 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";
2019-11-30 21:12:50 +00:00
version = "1.9.0";
src = fetchFromGitHub {
owner = "sharkdp";
2019-06-09 09:36:12 +00:00
repo = pname;
rev = "refs/tags/v${version}";
2019-11-30 21:12:50 +00:00
sha256 = "0jx2lqhayp14c51dfvgmqrmmadyvxf0p4dsn770ndqpzv66rh6zb";
};
cargoSha256 = "0n0hizldhr026mrzzz1wlw4g0b1z6ybxarybq3fzchs722iqpsis";
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;
};
}