2010-07-28 12:55:54 +01:00
|
|
|
{ stdenv, fetchurl }:
|
|
|
|
|
2013-11-08 15:02:51 +00:00
|
|
|
stdenv.mkDerivation rec {
|
2019-01-30 13:30:39 +00:00
|
|
|
name = "iperf-2.0.13";
|
2009-03-16 18:39:04 +00:00
|
|
|
|
2010-07-28 12:55:54 +01:00
|
|
|
src = fetchurl {
|
2017-03-27 02:41:22 +01:00
|
|
|
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
|
2019-01-30 13:30:39 +00:00
|
|
|
sha256 = "1bbq6xr0vrd88zssfiadvw3awyn236yv94fsdl9q2sh9cv4xx2n8";
|
2009-03-16 18:39:04 +00:00
|
|
|
};
|
|
|
|
|
2016-02-26 17:38:15 +00:00
|
|
|
hardeningDisable = [ "format" ];
|
2019-01-30 13:30:57 +00:00
|
|
|
configureFlags = [ "--enable-fastsampling" ];
|
2015-12-23 01:59:47 +00:00
|
|
|
|
2019-06-04 13:37:04 +01:00
|
|
|
postInstall = ''
|
|
|
|
mv $out/bin/iperf $out/bin/iperf2
|
|
|
|
ln -s $out/bin/iperf2 $out/bin/iperf
|
|
|
|
'';
|
|
|
|
|
2013-11-08 15:02:51 +00:00
|
|
|
meta = with stdenv.lib; {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://sourceforge.net/projects/iperf/";
|
2013-11-08 15:02:51 +00:00
|
|
|
description = "Tool to measure IP bandwidth using UDP or TCP";
|
2014-04-12 17:37:45 +01:00
|
|
|
platforms = platforms.unix;
|
2017-03-27 02:41:22 +01:00
|
|
|
license = licenses.mit;
|
2019-06-04 13:37:04 +01:00
|
|
|
|
|
|
|
# prioritize iperf3
|
|
|
|
priority = 10;
|
2009-03-16 18:39:04 +00:00
|
|
|
};
|
|
|
|
}
|