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 {
2018-01-28 02:20:44 +00:00
name = "iperf-2.0.10";
src = fetchurl {
url = "mirror://sourceforge/iperf2/files/${name}.tar.gz";
2018-01-28 02:20:44 +00:00
sha256 = "1whyi7lxrkllmbs7i1avc6jq8fvirn64mhx9197bf4x3rj6k9r3z";
};
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;
};
}