iperf2: 2.0.5 -> 2.0.9

This also fixes the build on clang 4

Changed files
+5 -5
pkgs
tools
networking
iperf
+5 -5
pkgs/tools/networking/iperf/2.nix
···
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
-
name = "iperf-2.0.5";
src = fetchurl {
-
url = "mirror://sourceforge/iperf/${name}.tar.gz";
-
sha256 = "0nr6c81x55ihs7ly2dwq19v9i1n6wiyad1gacw3aikii0kzlwsv3";
};
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
-
homepage = "http://sourceforge.net/projects/iperf/";
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
-
license = "as-is";
};
}
···
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
+
name = "iperf-2.0.9";
src = fetchurl {
+
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
+
sha256 = "1gzh8dk2myqgxznxrryib4zsw23ffvx0s5j7sa780vk86lgr20nv";
};
hardeningDisable = [ "format" ];
meta = with stdenv.lib; {
+
homepage = "http://sourceforge.net/projects/iperf/";
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
+
license = licenses.mit;
};
}