iperf: 3.2 -> 3.3

This commit is contained in:
Tuomas Tynkkynen 2017-11-06 01:52:13 +02:00 committed by Tuomas Tynkkynen
parent a8dc88258f
commit c2031ee785

View File

@ -1,13 +1,15 @@
{ stdenv, fetchurl }:
{ stdenv, fetchurl, openssl }:
stdenv.mkDerivation rec {
name = "iperf-3.2";
name = "iperf-3.3";
src = fetchurl {
url = "http://downloads.es.net/pub/iperf/${name}.tar.gz";
sha256 = "07cwrl9q5pmfjlh6ilpk7hm25lpkcaf917zhpmfq918lhrpv61zj";
sha256 = "1n442bjkm1dvzmcj8z1i99yrmba489yz3f5v27ybymhh4mqn4nbg";
};
buildInputs = [ openssl ];
postInstall = ''
ln -s iperf3 $out/bin/iperf
'';