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

24 lines
679 B
Nix
Raw Normal View History

{ stdenv, fetchFromGitHub, rustPlatform }:
2018-06-12 00:10:56 +02:00
rustPlatform.buildRustPackage rec {
name = "hyperfine-${version}";
2018-06-12 00:10:56 +02:00
version = "1.1.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "hyperfine";
rev = "refs/tags/v${version}";
2018-06-12 00:10:56 +02:00
sha256 = "13h43sjp059yq3bmdbb9i1082fkx5yzmhrkf5kpkxhnyn67xbdsg";
};
2018-03-25 10:04:08 +02:00
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;
};
}