nixpkgs/pkgs/tools/misc/hyperfine/default.nix
2022-07-27 12:04:47 +08:00

39 lines
1,004 B
Nix

{ lib
, rustPlatform
, fetchCrate
, installShellFiles
, stdenv
, Security
}:
rustPlatform.buildRustPackage rec {
pname = "hyperfine";
version = "1.14.0";
src = fetchCrate {
inherit pname version;
sha256 = "sha256-3DDgh/0iD1LJEPjicLtHcs9PMso/Wv+3vlkWfdJlpIM=";
};
cargoSha256 = "sha256-VkB6KJUi5PACpjrK/OJ5tmroJJVnDxhZAQzSWkrtuCU=";
nativeBuildInputs = [ installShellFiles ];
buildInputs = lib.optional stdenv.isDarwin Security;
postInstall = ''
installManPage doc/hyperfine.1
installShellCompletion \
$releaseDir/build/hyperfine-*/out/hyperfine.{bash,fish} \
--zsh $releaseDir/build/hyperfine-*/out/_hyperfine
'';
meta = with lib; {
description = "Command-line benchmarking tool";
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 ];
};
}