1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-27 16:11:58 +00:00
nixpkgs/pkgs/tools/misc/hyperfine/default.nix

28 lines
739 B
Nix
Raw Normal View History

2018-10-02 22:41:48 +01:00
{ stdenv, fetchFromGitHub, rustPlatform
, Security
}:
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";
src = fetchFromGitHub {
owner = "sharkdp";
2019-06-09 10:36:12 +01:00
repo = pname;
rev = "refs/tags/v${version}";
2019-11-30 21:12:50 +00:00
sha256 = "0jx2lqhayp14c51dfvgmqrmmadyvxf0p4dsn770ndqpzv66rh6zb";
};
2019-11-30 21:12:50 +00:00
cargoSha256 = "0sqmqfig40ragjx3jvwrng6hqz8l1zbmxzq470lk66x0gy4gziag";
2018-10-02 22:41:48 +01: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;
};
}