diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-27 17:05:35 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-05-27 18:20:35 +0200 |
commit | 80594d6749011e8655a65173ee2ad30b219bbbe5 (patch) | |
tree | c81c4e834516249334a5075c824a448baa803346 /gnu/packages | |
parent | f2c66d70fca921c59328cd739eaa039f5edfa4f4 (diff) | |
download | guix-80594d6749011e8655a65173ee2ad30b219bbbe5.tar.gz guix-80594d6749011e8655a65173ee2ad30b219bbbe5.zip |
gnu: iperf: Omit static library.
* gnu/packages/networking.scm (iperf)[arguments]: Add "--disable-static"
configure flag.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/networking.scm | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/gnu/packages/networking.scm b/gnu/packages/networking.scm index 6cb1cc9f7f..ccac1bfc6d 100644 --- a/gnu/packages/networking.scm +++ b/gnu/packages/networking.scm @@ -2358,6 +2358,9 @@ that block port 22.") (sha256 (base32 "102wcyl4j7c7lj7z87b5xlhj1ark88v4f3q9pmmljw8ksn2w1m2g")))) (build-system gnu-build-system) + (arguments + `(#:configure-flags + (list "--disable-static"))) (synopsis "TCP, UDP and SCTP bandwidth measurement tool") (description "iPerf is a tool to measure achievable bandwidth on IP networks. It |