guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

08/16: gnu: iperf: Update to 3.10.


From: guix-commits
Subject: 08/16: gnu: iperf: Update to 3.10.
Date: Thu, 27 May 2021 12:27:36 -0400 (EDT)

nckx pushed a commit to branch master
in repository guix.

commit f2c66d70fca921c59328cd739eaa039f5edfa4f4
Author: Tobias Geerinckx-Rice <me@tobias.gr>
AuthorDate: Thu May 27 17:05:05 2021 +0200

    gnu: iperf: Update to 3.10.
    
    * gnu/packages/networking.scm (iperf): Update to 3.10.
    [source]: Build from git.
---
 gnu/packages/networking.scm | 18 ++++++++++--------
 1 file changed, 10 insertions(+), 8 deletions(-)

diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm
index 8bcaa98..6cb1cc9 100644
--- a/gnu/packages/networking.scm
+++ b/gnu/packages/networking.scm
@@ -2347,14 +2347,16 @@ that block port 22.")
 (define-public iperf
   (package
     (name "iperf")
-    (version "3.9")
-    (source (origin
-              (method url-fetch)
-              (uri (string-append "http://downloads.es.net/pub/iperf";
-                                  "/iperf-" version ".tar.gz"))
-              (sha256
-                (base32
-                 "0f601avdmzpwsa3lbi0ppjhkrdipm5wifhhxy5czf99370k3mdi4"))))
+    (version "3.10")
+    (source
+     (origin
+       (method git-fetch)
+       (uri (git-reference
+             (url "https://github.com/esnet/iperf";)
+             (commit version)))
+       (file-name (git-file-name name version))
+       (sha256
+        (base32 "102wcyl4j7c7lj7z87b5xlhj1ark88v4f3q9pmmljw8ksn2w1m2g"))))
     (build-system gnu-build-system)
     (synopsis "TCP, UDP and SCTP bandwidth measurement tool")
     (description



reply via email to

[Prev in Thread] Current Thread [Next in Thread]