1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-09-11 15:08:33 +01:00
nixpkgs/pkgs/tools/networking/iperf/3.nix

23 lines
552 B
Nix
Raw Normal View History

2014-10-05 01:23:00 +01:00
{ stdenv, fetchurl }:
stdenv.mkDerivation rec {
2016-06-23 20:05:06 +01:00
name = "iperf-3.1.3";
2014-10-05 01:23:00 +01:00
src = fetchurl {
url = "http://downloads.es.net/pub/iperf/${name}.tar.gz";
2016-06-23 20:05:06 +01:00
sha256 = "1gwmhm29zlp5grrpglmqj7vgx19s6xy33hk6hpbn8jnpn5lxpn30";
2014-10-05 01:23:00 +01: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";
2016-06-23 20:05:06 +01:00
maintainers = with maintainers; [ wkennington fpletz ];
2014-10-05 01:23:00 +01:00
};
}