2018-10-14 06:20:42 -07:00
|
|
|
{ stdenv, fetchurl, gettext, libintl, ncurses, openssl
|
2015-09-11 12:49:54 -07:00
|
|
|
, fftw ? null }:
|
2015-01-18 18:52:26 -08:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 05:41:18 -07:00
|
|
|
pname = "httping";
|
2017-03-01 17:12:00 -08:00
|
|
|
version = "2.5";
|
2015-01-18 18:52:26 -08:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 05:41:18 -07:00
|
|
|
url = "https://vanheusden.com/httping/${pname}-${version}.tgz";
|
2017-03-01 17:12:00 -08:00
|
|
|
sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y";
|
2015-01-18 18:52:26 -08:00
|
|
|
};
|
|
|
|
|
2018-10-14 06:20:42 -07:00
|
|
|
buildInputs = [ fftw libintl ncurses openssl ];
|
2015-06-17 10:36:06 -07:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2015-01-18 18:52:26 -08:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX="
|
|
|
|
];
|
|
|
|
|
2015-04-27 17:09:12 -07:00
|
|
|
meta = with stdenv.lib; {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://vanheusden.com/httping";
|
2015-04-27 17:09:12 -07:00
|
|
|
description = "ping with HTTP requests";
|
2015-09-11 12:49:54 -07:00
|
|
|
longDescription = ''
|
|
|
|
Give httping an url, and it'll show you how long it takes to connect,
|
|
|
|
send a request and retrieve the reply (only the headers). Be aware that
|
|
|
|
the transmission across the network also takes time! So it measures the
|
|
|
|
latency of the webserver + network. It supports IPv6.
|
|
|
|
'';
|
2017-03-02 10:20:26 -08:00
|
|
|
license = licenses.agpl3;
|
2019-08-20 06:24:01 -07:00
|
|
|
maintainers = [];
|
2018-10-14 06:20:42 -07:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-01-18 18:52:26 -08:00
|
|
|
};
|
|
|
|
}
|