2012-12-12 05:35:29 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01:00
|
|
|
pname = "wbox";
|
2012-12-12 05:35:29 +00:00
|
|
|
version = "5";
|
|
|
|
|
|
|
|
installPhase = ''
|
|
|
|
install -vD wbox "$out/bin/wbox"
|
|
|
|
'';
|
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 13:41:18 +01:00
|
|
|
url = "http://www.hping.org/wbox/${pname}-${version}.tar.gz";
|
2012-12-12 05:35:29 +00:00
|
|
|
sha256 = "06daxwbysppvbh1mwprw8fgsp6mbd3kqj7a978w7ivn8hdgdi28m";
|
|
|
|
};
|
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "A simple HTTP benchmarking tool";
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "http://www.hping.org/wbox/";
|
2012-12-12 05:35:29 +00:00
|
|
|
license = stdenv.lib.licenses.bsd3;
|
2016-08-02 18:50:55 +01:00
|
|
|
platforms = stdenv.lib.platforms.unix;
|
2012-12-12 05:35:29 +00:00
|
|
|
};
|
|
|
|
}
|