wbox: New package, version 5.
Yet another HTTP benchmarking tool, which is really quite minimalistic and in ANSI C. This package maybe isn't even worth putting it in its own file and directory but I did it for the sake of consistency. Signed-off-by: aszlig <aszlig@redmoonstudios.org>
This commit is contained in:
@@ -0,0 +1,21 @@
|
||||
{ stdenv, fetchurl }:
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "wbox-${version}";
|
||||
version = "5";
|
||||
|
||||
installPhase = ''
|
||||
install -vD wbox "$out/bin/wbox"
|
||||
'';
|
||||
|
||||
src = fetchurl {
|
||||
url = "http://www.hping.org/wbox/${name}.tar.gz";
|
||||
sha256 = "06daxwbysppvbh1mwprw8fgsp6mbd3kqj7a978w7ivn8hdgdi28m";
|
||||
};
|
||||
|
||||
meta = {
|
||||
description = "A simple HTTP benchmarking tool";
|
||||
homepage = "http://www.hping.org/wbox/";
|
||||
license = stdenv.lib.licenses.bsd3;
|
||||
};
|
||||
}
|
||||
@@ -1616,6 +1616,8 @@ let
|
||||
|
||||
vtun = callPackage ../tools/networking/vtun { };
|
||||
|
||||
wbox = callPackage ../tools/networking/wbox {};
|
||||
|
||||
welkin = callPackage ../tools/graphics/welkin {};
|
||||
|
||||
testdisk = callPackage ../tools/misc/testdisk { };
|
||||
|
||||
Reference in New Issue
Block a user