lol

httping: add optional fftw for better graphing

Enabled by default.

+10 -3
+10 -3
pkgs/tools/networking/httping/default.nix
··· 1 - { stdenv, fetchurl, gettext, ncurses, openssl }: 1 + { stdenv, fetchurl, gettext, ncurses, openssl 2 + , fftw ? null }: 2 3 3 4 stdenv.mkDerivation rec { 4 5 name = "httping-${version}"; ··· 10 11 sha256 = "1110r3gpsj9xmybdw7w4zkhj3zmn5mnv2nq0ijbvrywbn019zdfs"; 11 12 }; 12 13 13 - buildInputs = [ ncurses openssl ]; 14 + buildInputs = [ fftw ncurses openssl ]; 14 15 nativeBuildInputs = [ gettext ]; 15 16 16 17 makeFlags = [ ··· 22 23 inherit version; 23 24 homepage = http://www.vanheusden.com/httping; 24 25 description = "ping with HTTP requests"; 26 + longDescription = '' 27 + Give httping an url, and it'll show you how long it takes to connect, 28 + send a request and retrieve the reply (only the headers). Be aware that 29 + the transmission across the network also takes time! So it measures the 30 + latency of the webserver + network. It supports IPv6. 31 + ''; 25 32 maintainers = with maintainers; [ nckx rickynils ]; 26 - platforms = with platforms; linux; 33 + platforms = platforms.linux; 27 34 }; 28 35 }