Skip to content

Commit

Permalink
iperf2: 2.0.5 -> 2.0.9
Browse files Browse the repository at this point in the history
This also fixes the build on clang 4
  • Loading branch information
copumpkin committed Mar 27, 2017
1 parent 310bb3e commit c46600d
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions pkgs/tools/networking/iperf/2.nix
@@ -1,19 +1,19 @@
{ stdenv, fetchurl }:

stdenv.mkDerivation rec {
name = "iperf-2.0.5";
name = "iperf-2.0.9";

src = fetchurl {
url = "mirror://sourceforge/iperf/${name}.tar.gz";
sha256 = "0nr6c81x55ihs7ly2dwq19v9i1n6wiyad1gacw3aikii0kzlwsv3";
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
sha256 = "1gzh8dk2myqgxznxrryib4zsw23ffvx0s5j7sa780vk86lgr20nv";
};

hardeningDisable = [ "format" ];

meta = with stdenv.lib; {
homepage = "http://sourceforge.net/projects/iperf/";
homepage = "http://sourceforge.net/projects/iperf/";
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
license = "as-is";
license = licenses.mit;
};
}

0 comments on commit c46600d

Please sign in to comment.