3
0
Fork 0
forked from mirrors/nixpkgs

added iperf (a tool to measure network bandwidth)

svn path=/nixpkgs/trunk/; revision=14564
This commit is contained in:
Marc Weber 2009-03-16 18:39:04 +00:00
parent 808f12e369
commit 8fa77b44cb
2 changed files with 21 additions and 0 deletions

View file

@ -0,0 +1,17 @@
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";
};
}

View file

@ -844,6 +844,10 @@ let
inherit stdenv fetchurl zlib nettools;
};
iperf = import ../tools/networking/iperf {
inherit fetchurl stdenv;
};
jdiskreport = import ../tools/misc/jdiskreport {
inherit fetchurl stdenv unzip jdk;
};