nixpkgs/pkgs/tools/networking/iperf/2.nix

20 lines
485 B
Nix
Raw Normal View History

{ stdenv, fetchurl }:
2013-11-08 15:02:51 +00:00
stdenv.mkDerivation rec {
name = "iperf-2.0.11";
src = fetchurl {
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
sha256 = "1lm5inayc8fkqncj55fvzl9611rkmkj212lknmby7c3bgk851mmp";
};
hardeningDisable = [ "format" ];
2015-12-23 01:59:47 +00:00
2013-11-08 15:02:51 +00:00
meta = with stdenv.lib; {
homepage = https://sourceforge.net/projects/iperf/;
2013-11-08 15:02:51 +00:00
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
license = licenses.mit;
};
}