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

20 lines
485 B
Nix
Raw Normal View History

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