nixpkgs/pkgs/tools/networking/httping/default.nix

35 lines
1002 B
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, gettext, libintl, ncurses, openssl
, fftw ? null }:
2015-01-19 02:52:26 +00:00
stdenv.mkDerivation rec {
pname = "httping";
2017-03-02 01:12:00 +00:00
version = "2.5";
2015-01-19 02:52:26 +00:00
src = fetchurl {
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
};
buildInputs = [ fftw libintl ncurses openssl ];
nativeBuildInputs = [ gettext ];
2015-01-19 02:52:26 +00:00
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
meta = with lib; {
homepage = "https://vanheusden.com/httping";
description = "ping with HTTP requests";
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.
'';
license = licenses.agpl3;
maintainers = [];
platforms = platforms.linux ++ platforms.darwin;
2015-01-19 02:52:26 +00:00
};
}