nixpkgs/pkgs/tools/networking/iperf/default.nix
Marc Weber 8fa77b44cb added iperf (a tool to measure network bandwidth)
svn path=/nixpkgs/trunk/; revision=14564
2009-03-16 18:39:04 +00:00

18 lines
402 B
Nix

args: with args;
stdenv.mkDerivation {
name = "iperf-2.0.4";
src = args.fetchurl {
url = http://garr.dl.sourceforge.net/sourceforge/iperf/iperf-2.0.4.tar.gz;
sha256 = "0i3r75prbyxs56rngjbrag8rg480ki3daaa924krrafng30z2liv";
};
#buildInputs =(with args; []);
meta = {
homepage = "";
description = "tool to measure IP bandwidth using UDP or TCP";
license = "as-is";
};
}