1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/httping/default.nix

34 lines
973 B
Nix
Raw Normal View History

{ stdenv, fetchurl, gettext, ncurses, openssl
, fftw ? null }:
2015-01-19 02:52:26 +00:00
stdenv.mkDerivation rec {
name = "httping-${version}";
version = "2.4";
2015-01-19 02:52:26 +00:00
src = fetchurl {
url = "http://www.vanheusden.com/httping/${name}.tgz";
sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs";
2015-01-19 02:52:26 +00:00
};
buildInputs = [ fftw ncurses openssl ];
nativeBuildInputs = [ gettext ];
2015-01-19 02:52:26 +00:00
makeFlags = [
"DESTDIR=$(out)"
"PREFIX="
];
meta = with stdenv.lib; {
homepage = http://www.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.
'';
maintainers = with maintainers; [ nckx rickynils ];
platforms = platforms.linux;
2015-01-19 02:52:26 +00:00
};
}