nixpkgs/pkgs/tools/networking/iperf/2.nix
2020-04-10 17:54:53 +01:00

29 lines
684 B
Nix

{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
name = "iperf-2.0.13";
src = fetchurl {
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
sha256 = "1bbq6xr0vrd88zssfiadvw3awyn236yv94fsdl9q2sh9cv4xx2n8";
};
hardeningDisable = [ "format" ];
configureFlags = [ "--enable-fastsampling" ];
postInstall = ''
mv $out/bin/iperf $out/bin/iperf2
ln -s $out/bin/iperf2 $out/bin/iperf
'';
meta = with stdenv.lib; {
homepage = "https://sourceforge.net/projects/iperf/";
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
license = licenses.mit;
# prioritize iperf3
priority = 10;
};
}