nixpkgs/pkgs/tools/misc/hyperfine/default.nix
Vladyslav Mykhailichenko 8df3b7225f hyperfine: 1.0.0 -> 1.1.0
2018-06-12 01:10:56 +03:00

24 lines
679 B
Nix

{ stdenv, fetchFromGitHub, rustPlatform }:
rustPlatform.buildRustPackage rec {
name = "hyperfine-${version}";
version = "1.1.0";
src = fetchFromGitHub {
owner = "sharkdp";
repo = "hyperfine";
rev = "refs/tags/v${version}";
sha256 = "13h43sjp059yq3bmdbb9i1082fkx5yzmhrkf5kpkxhnyn67xbdsg";
};
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;
};
}