2018-10-14 13:20:42 +00:00
|
|
|
{ stdenv, fetchurl, gettext, libintl, ncurses, openssl
|
2015-09-11 19:49:54 +00:00
|
|
|
, fftw ? null }:
|
2015-01-19 02:52:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 12:41:18 +00:00
|
|
|
pname = "httping";
|
2017-03-02 01:12:00 +00:00
|
|
|
version = "2.5";
|
2015-01-19 02:52:26 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2019-08-15 12:41:18 +00:00
|
|
|
url = "https://vanheusden.com/httping/${pname}-${version}.tgz";
|
2017-03-02 01:12:00 +00:00
|
|
|
sha256 = "1y7sbgkhgadmd93x1zafqc4yp26ssiv16ni5bbi9vmvvdl55m29y";
|
2015-01-19 02:52:26 +00:00
|
|
|
};
|
|
|
|
|
2018-10-14 13:20:42 +00:00
|
|
|
buildInputs = [ fftw libintl ncurses openssl ];
|
2015-06-17 17:36:06 +00:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2015-01-19 02:52:26 +00:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX="
|
|
|
|
];
|
|
|
|
|
2015-04-28 00:09:12 +00:00
|
|
|
meta = with stdenv.lib; {
|
2018-10-14 13:20:42 +00:00
|
|
|
homepage = https://vanheusden.com/httping;
|
2015-04-28 00:09:12 +00:00
|
|
|
description = "ping with HTTP requests";
|
2015-09-11 19:49:54 +00: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 18:20:26 +00:00
|
|
|
license = licenses.agpl3;
|
2019-08-20 13:24:01 +00:00
|
|
|
maintainers = [];
|
2018-10-14 13:20:42 +00:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-01-19 02:52:26 +00:00
|
|
|
};
|
|
|
|
}
|