httping: add optional fftw for better graphing
Enabled by default.
This commit is contained in:
parent
c2c70b5edd
commit
4dbaefa218
@ -1,4 +1,5 @@
|
|||||||
{ stdenv, fetchurl, gettext, ncurses, openssl }:
|
{ stdenv, fetchurl, gettext, ncurses, openssl
|
||||||
|
, fftw ? null }:
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
stdenv.mkDerivation rec {
|
||||||
name = "httping-${version}";
|
name = "httping-${version}";
|
||||||
@ -10,7 +11,7 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs";
|
sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs";
|
||||||
};
|
};
|
||||||
|
|
||||||
buildInputs = [ ncurses openssl ];
|
buildInputs = [ fftw ncurses openssl ];
|
||||||
nativeBuildInputs = [ gettext ];
|
nativeBuildInputs = [ gettext ];
|
||||||
|
|
||||||
makeFlags = [
|
makeFlags = [
|
||||||
@ -22,7 +23,13 @@ stdenv.mkDerivation rec {
|
|||||||
inherit version;
|
inherit version;
|
||||||
homepage = http://www.vanheusden.com/httping;
|
homepage = http://www.vanheusden.com/httping;
|
||||||
description = "ping with HTTP requests";
|
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 ];
|
maintainers = with maintainers; [ nckx rickynils ];
|
||||||
platforms = with platforms; linux;
|
platforms = platforms.linux;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user