42 lines
1.1 KiB
Nix
42 lines
1.1 KiB
Nix
{ lib
|
|
, rustPlatform
|
|
, fetchFromGitHub
|
|
, installShellFiles
|
|
, stdenv
|
|
, Security
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "hyperfine";
|
|
version = "1.18.0";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "sharkdp";
|
|
repo = "hyperfine";
|
|
rev = "v${version}";
|
|
hash = "sha256-9YfnCHiG9TDOsEAcrrb0GOxdq39Q+TiltWKwnr3ObAQ=";
|
|
};
|
|
|
|
cargoHash = "sha256-E2y/hQNcpW6b/ZJBlsp+2RDH2OgpX4kbn36aBHA5X6U=";
|
|
|
|
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 ];
|
|
mainProgram = "hyperfine";
|
|
};
|
|
}
|