3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/tools/misc/hyperfine/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

39 lines
1,004 B
Nix
Raw Normal View History

{ lib
, rustPlatform
, fetchCrate
, installShellFiles
, stdenv
2018-10-02 22:41:48 +01:00
, Security
}:
2018-06-11 23:10:56 +01:00
rustPlatform.buildRustPackage rec {
2019-06-09 10:36:12 +01:00
pname = "hyperfine";
2022-09-07 14:03:05 +01:00
version = "1.15.0";
src = fetchCrate {
inherit pname version;
2022-09-07 14:03:05 +01:00
sha256 = "sha256-JJ4sEwe2fXOGlofJ9SkXEllMCMhn7MSJ+H3aAF0F0zk=";
};
2022-09-07 14:03:05 +01:00
cargoSha256 = "sha256-3xOh51rUnQcUfQ+asurbfNYTb5dWQO5YY/AbGRV+26w=";
2018-10-02 22:41:48 +01:00
nativeBuildInputs = [ installShellFiles ];
2021-01-15 09:19:50 +00:00
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 ];
};
}