Skip to content

Commit

Permalink
iperf: 3.2 -> 3.3
Browse files Browse the repository at this point in the history
  • Loading branch information
dezgeg committed Nov 18, 2017
1 parent a8dc882 commit c2031ee
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions pkgs/tools/networking/iperf/3.nix
@@ -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
'';
Expand Down

0 comments on commit c2031ee

Please sign in to comment.