about summary refs log tree commit diff
path: root/pkgs/tools/networking/iperf/2.nix
blob: fba6ae92b034fe92699f2832efd76b5e08e42361 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{ 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;
  };
}