2021-11-14 14:57:00 +00:00
|
|
|
{ lib, stdenv, fetchurl, fetchpatch, gettext, libintl, ncurses, openssl
|
2015-09-11 20:49:54 +01:00
|
|
|
, fftw ? null }:
|
2015-01-19 02:52:26 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2019-08-15 13:41:18 +01: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 13:41:18 +01: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
|
|
|
};
|
|
|
|
|
2021-11-14 14:57:00 +00:00
|
|
|
patches = [
|
|
|
|
# Upstream fix for ncurses-6.3.
|
|
|
|
(fetchpatch {
|
|
|
|
name = "ncurses-6.3.patch";
|
|
|
|
url = "https://github.com/folkertvanheusden/HTTPing/commit/4ea9d5b78540c972e3fe1bf44db9f7b3f87c0ad0.patch";
|
|
|
|
sha256 = "0w3kdkq6c6hz1d9jjnw0ldvd6dy39yamj8haf0hvcyb1sb67qjmp";
|
|
|
|
})
|
|
|
|
];
|
|
|
|
|
2018-10-14 14:20:42 +01:00
|
|
|
buildInputs = [ fftw libintl ncurses openssl ];
|
2015-06-17 18:36:06 +01:00
|
|
|
nativeBuildInputs = [ gettext ];
|
2015-01-19 02:52:26 +00:00
|
|
|
|
|
|
|
makeFlags = [
|
|
|
|
"DESTDIR=$(out)"
|
|
|
|
"PREFIX="
|
|
|
|
];
|
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://vanheusden.com/httping";
|
2015-04-28 01:09:12 +01:00
|
|
|
description = "ping with HTTP requests";
|
2015-09-11 20:49:54 +01: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 14:24:01 +01:00
|
|
|
maintainers = [];
|
2018-10-14 14:20:42 +01:00
|
|
|
platforms = platforms.linux ++ platforms.darwin;
|
2015-01-19 02:52:26 +00:00
|
|
|
};
|
|
|
|
}
|