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

23 lines
545 B
Nix
Raw Normal View History

2014-10-05 02:23:00 +02:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2014-11-03 02:22:01 +01:00
name = "iperf-3.0.9";
2014-10-05 02:23:00 +02:00
src = fetchurl {
url = "http://downloads.es.net/pub/iperf/${name}.tar.gz";
2014-11-03 02:22:01 +01:00
sha256 = "0n94d6n4nm9b88qyv1pqasrvxqc8kyqvqsdra1rr6syj60mrl920";
2014-10-05 02:23:00 +02:00
};
postInstall = ''
ln -s iperf3 $out/bin/iperf
'';
meta = with stdenv.lib; {
homepage = http://software.es.net/iperf/;
description = "Tool to measure IP bandwidth using UDP or TCP";
platforms = platforms.unix;
license = "as-is";
maintainers = with maintainers; [ wkennington ];
};
}