2016-09-06 18:44:46 +00:00
|
|
|
{ stdenv, fetchurl, openssl, fetchpatch }:
|
2014-10-05 00:23:00 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
2018-07-04 14:40:35 +00:00
|
|
|
name = "iperf-3.6";
|
2014-10-05 00:23:00 +00:00
|
|
|
|
|
|
|
src = fetchurl {
|
2018-06-28 18:43:35 +00:00
|
|
|
url = "https://downloads.es.net/pub/iperf/${name}.tar.gz";
|
2018-07-04 14:40:35 +00:00
|
|
|
sha256 = "0vllfmyqiy6nxgbagsx1zrs4pmfawyalzm5l1xcwqq64dpj52pfy";
|
2014-10-05 00:23:00 +00:00
|
|
|
};
|
|
|
|
|
2017-11-05 23:52:13 +00:00
|
|
|
buildInputs = [ openssl ];
|
|
|
|
|
2016-09-06 18:44:46 +00:00
|
|
|
patches = stdenv.lib.optionals stdenv.hostPlatform.isMusl [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "http://git.alpinelinux.org/cgit/aports/plain/main/iperf3/remove-pg-flags.patch";
|
|
|
|
name = "remove-pg-flags.patch";
|
|
|
|
sha256 = "0lnczhass24kgq59drgdipnhjnw4l1cy6gqza7f2ah1qr4q104rm";
|
|
|
|
})
|
2018-02-21 18:35:59 +00:00
|
|
|
];
|
2016-09-06 18:44:46 +00:00
|
|
|
|
2014-10-05 00:23:00 +00: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 19:05:06 +00:00
|
|
|
maintainers = with maintainers; [ wkennington fpletz ];
|
2014-10-05 00:23:00 +00:00
|
|
|
};
|
|
|
|
}
|