1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-21 13:10:33 +00:00

hey: init at 0.1.3

This commit is contained in:
Oleksii Filonenko 2020-02-05 17:20:24 +02:00
parent 67143ec938
commit 180b61b047
2 changed files with 24 additions and 0 deletions

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

View file

@ -4028,6 +4028,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 { };