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

28 lines
737 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-10-13 19:41:49 +00:00
version = "1.8.0";
src = fetchFromGitHub {
owner = "sharkdp";
2019-06-09 09:36:12 +00:00
repo = pname;
rev = "refs/tags/v${version}";
2019-10-13 19:41:49 +00:00
sha256 = "12bj5xifnpj5yni563b6b33lzmkgm7j1wk0c9859zw59b33ifd1l";
};
2019-10-13 19:41:49 +00:00
cargoSha256 = "1ias944wg55njjnap7w02b87bvb502vzkpjvsb704q5i9sr8hjry";
2018-10-02 21:41:48 +00:00
buildInputs = stdenv.lib.optional stdenv.isDarwin Security;
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;
};
}