2014-10-05 00:23:00 +00:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2017-04-09 18:44:19 +00:00
|
|
|
name = "iperf-3.1.7";
|
2014-10-05 00:23:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "http://downloads.es.net/pub/iperf/${name}.tar.gz";
|
2017-04-09 18:44:19 +00:00
|
|
|
sha256 = "0kvk8d0a3dcxc8fisyprbn01y8akxj4sx8ld5dh508p9dx077vx4";
|
2014-10-05 00:23:00 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
ln -s iperf3 $out/bin/iperf
|
|
|
|
'';
|
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
|
|
|
homepage = http://software.es.net/iperf/;
|
|
|
|
description = "Tool to measure IP bandwidth using UDP or TCP";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
license = "as-is";
|
2016-06-23 19:05:06 +00:00
|
|
|
maintainers = with maintainers; [ wkennington fpletz ];
|
2014-10-05 00:23:00 +00:00
|
|
|
};
|
|
|
|
}
|