summary refs log tree commit diff
path: root/pkgs/tools/networking/iperf/default.nix
blob: 66f600f7678411ffe54be42690150a2da53adf90 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
{ stdenv, fetchurl }:

stdenv.mkDerivation {
  name = "iperf-2.0.4";

  src = fetchurl {
    url = mirror://sourceforge/iperf/iperf-2.0.4.tar.gz;
    sha256 = "0i3r75prbyxs56rngjbrag8rg480ki3daaa924krrafng30z2liv";
  };

  meta = {
    homepage = ""; 
    description = "tool to measure IP bandwidth using UDP or TCP";
    license = "as-is";
  };
}