mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-11-19 20:21:14 +00:00
tcpkali: init at 0.9
This commit is contained in:
parent
e8dea0db30
commit
b52d937475
|
@ -130,6 +130,7 @@
|
|||
ericsagnes = "Eric Sagnes <eric.sagnes@gmail.com>";
|
||||
erikryb = "Erik Rybakken <erik.rybakken@math.ntnu.no>";
|
||||
ertes = "Ertugrul Söylemez <esz@posteo.de>";
|
||||
ethercrow = "Dmitry Ivanov <ethercrow@gmail.com>";
|
||||
exi = "Reno Reckling <nixos@reckling.org>";
|
||||
exlevan = "Alexey Levan <exlevan@gmail.com>";
|
||||
expipiplus1 = "Joe Hermaszewski <nix@monoid.al>";
|
||||
|
|
21
pkgs/applications/networking/tcpkali/default.nix
Normal file
21
pkgs/applications/networking/tcpkali/default.nix
Normal file
|
@ -0,0 +1,21 @@
|
|||
{stdenv, autoreconfHook, fetchFromGitHub, bison}:
|
||||
|
||||
let version = "0.9"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "tcpkali-${version}";
|
||||
src = fetchFromGitHub {
|
||||
owner = "machinezone";
|
||||
repo = "tcpkali";
|
||||
rev = "v${version}";
|
||||
sha256 = "03cbmnc60wkd7f4bapn5cbm3c4zas2l0znsbpci2mn8ms8agif82";
|
||||
};
|
||||
buildInputs = [autoreconfHook bison];
|
||||
meta = {
|
||||
description = "High performance TCP and WebSocket load generator and sink";
|
||||
license = stdenv.lib.licenses.bsd2;
|
||||
inherit (src.meta) homepage;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
maintainers = with stdenv.lib.maintainers; [ ethercrow ];
|
||||
};
|
||||
}
|
|
@ -3697,6 +3697,8 @@ in
|
|||
|
||||
tcpflow = callPackage ../tools/networking/tcpflow { };
|
||||
|
||||
tcpkali = callPackage ../applications/networking/tcpkali { };
|
||||
|
||||
teamviewer = callPackage ../applications/networking/remote/teamviewer {
|
||||
stdenv = stdenv_32bit;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue