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

28 lines
737 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";
version = "1.6.0";
src = fetchFromGitHub {
owner = "sharkdp";
2019-06-09 10:36:12 +01:00
repo = pname;
rev = "refs/tags/v${version}";
2019-06-09 10:36:12 +01:00
sha256 = "0rwmigdnw2zgixzmif3wzw1adlyyk71jzvjfccqmgz840jkpvmcy";
};
2019-06-09 10:36:12 +01:00
cargoSha256 = "1j9ngbabg6vchgpiaqsbcvsm86syx2nbckzf9a4b29m69jv4pp1y";
2018-10-02 22:41:48 +01: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;
};
}