mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-21 13:10:33 +00:00
commit
d7a03511b6
22
pkgs/tools/networking/hey/default.nix
Normal file
22
pkgs/tools/networking/hey/default.nix
Normal file
|
@ -0,0 +1,22 @@
|
|||
{ buildGoModule, lib, fetchFromGitHub }:
|
||||
|
||||
buildGoModule rec {
|
||||
pname = "hey";
|
||||
version = "0.1.3";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "rakyll";
|
||||
repo = pname;
|
||||
rev = "v${version}";
|
||||
sha256 = "06w5hf0np0ayvjnfy8zgy605yrs5j326nk2gm0fy7amhwx1fzkwv";
|
||||
};
|
||||
|
||||
modSha256 = "0a00kcyagqczw0vhl8qs2xs1y8myw080y9kjs4qrcmj6kibdy55q";
|
||||
|
||||
meta = with lib; {
|
||||
description = "HTTP load generator, ApacheBench (ab) replacement";
|
||||
homepage = "https://github.com/rakyll/hey";
|
||||
license = licenses.asl20;
|
||||
maintainers = with maintainers; [ filalex77 ];
|
||||
};
|
||||
}
|
|
@ -4061,6 +4061,8 @@ in
|
|||
hexd = callPackage ../tools/misc/hexd { };
|
||||
pixd = callPackage ../tools/misc/pixd { };
|
||||
|
||||
hey = callPackage ../tools/networking/hey { };
|
||||
|
||||
hhpc = callPackage ../tools/misc/hhpc { };
|
||||
|
||||
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
||||
|
|
Loading…
Reference in a new issue