ghz: init at 0.109.0 (#183514)

Co-authored-by: Azat Bahawi <azat+github@bahawi.net>
This commit is contained in:
Ross Light 2022-08-19 11:42:51 -07:00 committed by GitHub
parent 0790457f89
commit a1dc0e04a8
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 28 additions and 0 deletions

View 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 ];
};
}

View file

@ -6591,6 +6591,8 @@ with pkgs;
ghrepo-stats = with python3Packages; toPythonApplication ghrepo-stats; ghrepo-stats = with python3Packages; toPythonApplication ghrepo-stats;
ghz = callPackage ../tools/networking/ghz { };
gibberish-detector = with python3Packages; toPythonApplication gibberish-detector; gibberish-detector = with python3Packages; toPythonApplication gibberish-detector;
gibo = callPackage ../tools/misc/gibo { }; gibo = callPackage ../tools/misc/gibo { };