forked from mirrors/nixpkgs
added iperf (a tool to measure network bandwidth)
svn path=/nixpkgs/trunk/; revision=14564
This commit is contained in:
parent
808f12e369
commit
8fa77b44cb
17
pkgs/tools/networking/iperf/default.nix
Normal file
17
pkgs/tools/networking/iperf/default.nix
Normal 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";
|
||||
};
|
||||
}
|
|
@ -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;
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue