ghz: init at 0.109.0 (#183514)
Co-authored-by: Azat Bahawi <azat+github@bahawi.net>
This commit is contained in:
parent
0790457f89
commit
a1dc0e04a8
26
pkgs/tools/networking/ghz/default.nix
Normal file
26
pkgs/tools/networking/ghz/default.nix
Normal file
@ -0,0 +1,26 @@
|
||||
{ lib, buildGoModule, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "ghz";
|
||||
version = "0.109.0";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "bojand";
|
||||
repo = "ghz";
|
||||
rev = "v${version}";
|
||||
sha256 = "sha256-5l2PeN+VxTaORAkmAfI9TCGd4W6y8BFs/eY4T9nYJuc=";
|
||||
};
|
||||
|
||||
vendorSha256 = "sha256-qZD+qxjjFgyQDtjOQcilS4w2sS9I+7iCK2/ThaAJTy4=";
|
||||
|
||||
subPackages = [ "cmd/ghz" "cmd/ghz-web" ];
|
||||
|
||||
ldflags = [ "-s" "-w" ];
|
||||
|
||||
meta = with lib; {
|
||||
description = "Simple gRPC benchmarking and load testing tool";
|
||||
homepage = "https://ghz.sh";
|
||||
license = licenses.asl20;
|
||||
maintainers = [ maintainers.zombiezen ];
|
||||
};
|
||||
}
|
@ -6591,6 +6591,8 @@ with pkgs;
|
||||
|
||||
ghrepo-stats = with python3Packages; toPythonApplication ghrepo-stats;
|
||||
|
||||
ghz = callPackage ../tools/networking/ghz { };
|
||||
|
||||
gibberish-detector = with python3Packages; toPythonApplication gibberish-detector;
|
||||
|
||||
gibo = callPackage ../tools/misc/gibo { };
|
||||
|
Loading…
Reference in New Issue
Block a user