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:
parent
67143ec938
commit
180b61b047
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 ];
|
||||||
|
};
|
||||||
|
}
|
|
@ -4028,6 +4028,8 @@ in
|
||||||
hexd = callPackage ../tools/misc/hexd { };
|
hexd = callPackage ../tools/misc/hexd { };
|
||||||
pixd = callPackage ../tools/misc/pixd { };
|
pixd = callPackage ../tools/misc/pixd { };
|
||||||
|
|
||||||
|
hey = callPackage ../tools/networking/hey { };
|
||||||
|
|
||||||
hhpc = callPackage ../tools/misc/hhpc { };
|
hhpc = callPackage ../tools/misc/hhpc { };
|
||||||
|
|
||||||
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
hiera-eyaml = callPackage ../tools/system/hiera-eyaml { };
|
||||||
|
|
Loading…
Reference in a new issue