about summary refs log tree commit diff
path: root/pkgs/tools/networking
diff options
context:
space:
mode:
authoredef <edef@edef.eu>2019-11-24 10:58:38 +0000
committerRenaud <c0bw3b@users.noreply.github.com>2019-11-24 11:58:38 +0100
commit78cb116272f85e691df648b7f117a4064b04ab4e (patch)
tree2e4473faafcffc3b33eaf82de460474b3333fecf /pkgs/tools/networking
parent0a724f9e5d4df0268c55a81de7d10ebafdb65e89 (diff)
downloadnixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar.gz
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar.bz2
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar.lz
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar.xz
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.tar.zst
nixlib-78cb116272f85e691df648b7f117a4064b04ab4e.zip
iperf3: correct license to bsd3 (#73949)
Quoth http://software.es.net/iperf:
> [iperf3] is released under a three-clause BSD license.
Diffstat (limited to 'pkgs/tools/networking')
-rw-r--r--pkgs/tools/networking/iperf/3.nix2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/tools/networking/iperf/3.nix b/pkgs/tools/networking/iperf/3.nix
index 4e2c27e2d409..c59eb09f4c5c 100644
--- a/pkgs/tools/networking/iperf/3.nix
+++ b/pkgs/tools/networking/iperf/3.nix
@@ -29,7 +29,7 @@ stdenv.mkDerivation rec {
     homepage = http://software.es.net/iperf/;
     description = "Tool to measure IP bandwidth using UDP or TCP";
     platforms = platforms.unix;
-    license = "as-is";
+    license = licenses.bsd3;
     maintainers = with maintainers; [ fpletz ];
   };
 }