2021-10-20 20:41:28 +00:00
|
|
|
{ lib
|
|
|
|
, rustPlatform
|
2023-06-03 23:51:01 +00:00
|
|
|
, fetchFromGitHub
|
2021-10-20 20:41:28 +00:00
|
|
|
, installShellFiles
|
|
|
|
, stdenv
|
2018-10-02 21:41:48 +00:00
|
|
|
, Security
|
|
|
|
}:
|
2018-02-15 19:46:40 +00:00
|
|
|
|
2018-06-11 22:10:56 +00:00
|
|
|
rustPlatform.buildRustPackage rec {
|
2019-06-09 09:36:12 +00:00
|
|
|
pname = "hyperfine";
|
2023-10-08 18:47:19 +00:00
|
|
|
version = "1.18.0";
|
2018-02-15 19:46:40 +00:00
|
|
|
|
2023-06-03 23:51:01 +00:00
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "sharkdp";
|
|
|
|
repo = "hyperfine";
|
|
|
|
rev = "v${version}";
|
2023-10-08 18:47:19 +00:00
|
|
|
hash = "sha256-9YfnCHiG9TDOsEAcrrb0GOxdq39Q+TiltWKwnr3ObAQ=";
|
2018-02-15 19:46:40 +00:00
|
|
|
};
|
|
|
|
|
2023-10-08 18:47:19 +00:00
|
|
|
cargoHash = "sha256-E2y/hQNcpW6b/ZJBlsp+2RDH2OgpX4kbn36aBHA5X6U=";
|
2018-10-02 21:41:48 +00:00
|
|
|
|
2020-05-30 17:09:33 +00:00
|
|
|
nativeBuildInputs = [ installShellFiles ];
|
2021-01-15 09:19:50 +00:00
|
|
|
buildInputs = lib.optional stdenv.isDarwin Security;
|
2018-02-15 19:46:40 +00:00
|
|
|
|
2020-05-30 17:09:33 +00:00
|
|
|
postInstall = ''
|
|
|
|
installManPage doc/hyperfine.1
|
|
|
|
|
|
|
|
installShellCompletion \
|
|
|
|
$releaseDir/build/hyperfine-*/out/hyperfine.{bash,fish} \
|
|
|
|
--zsh $releaseDir/build/hyperfine-*/out/_hyperfine
|
|
|
|
'';
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2018-02-15 19:46:40 +00:00
|
|
|
description = "Command-line benchmarking tool";
|
2021-10-20 20:41:28 +00:00
|
|
|
homepage = "https://github.com/sharkdp/hyperfine";
|
|
|
|
changelog = "https://github.com/sharkdp/hyperfine/blob/v${version}/CHANGELOG.md";
|
|
|
|
license = with licenses; [ asl20 /* or */ mit ];
|
|
|
|
maintainers = with maintainers; [ figsoda thoughtpolice ];
|
2018-02-15 19:46:40 +00:00
|
|
|
};
|
|
|
|
}
|