summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorJanne Heß <janne@hess.ooo>2020-10-19 12:24:49 +0200
committerGitHub <noreply@github.com>2020-10-19 12:24:49 +0200
commit7ef527cff856ea7938dba20769a6d59ebc9575e6 (patch)
tree79a86e100237c95420b6a9a34ff251adde305d52 /pkgs/tools
parent2ee6d466f5383bd0ec8c6d05485bbb9b3392304d (diff)
downloadnixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar.gz
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar.bz2
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar.lz
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar.xz
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.tar.zst
nixpkgs-7ef527cff856ea7938dba20769a6d59ebc9575e6.zip
iperf3: 3.8.1 -> 3.9 (#100744)
changelog http://software.es.net/iperf/news.html#iperf-3-9-released
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/networking/iperf/3.nix4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkgs/tools/networking/iperf/3.nix b/pkgs/tools/networking/iperf/3.nix
index 4910ff21da6..2ca92473146 100644
--- a/pkgs/tools/networking/iperf/3.nix
+++ b/pkgs/tools/networking/iperf/3.nix
@@ -2,11 +2,11 @@
 
 stdenv.mkDerivation rec {
   pname = "iperf";
-  version = "3.8.1";
+  version = "3.9";
 
   src = fetchurl {
     url = "https://downloads.es.net/pub/iperf/iperf-${version}.tar.gz";
-    sha256 = "15pdgnan9krf3dijan9in73ir8rcmhk3iw8085d732is4zrq1c75";
+    sha256 = "0f601avdmzpwsa3lbi0ppjhkrdipm5wifhhxy5czf99370k3mdi4";
   };
 
   buildInputs = [ openssl ];