summary refs log tree commit diff
path: root/pkgs/tools/security/bettercap
diff options
context:
space:
mode:
authorFabian Affolter <fabian@affolter-engineering.ch>2021-04-22 11:03:17 +0200
committerGitHub <noreply@github.com>2021-04-22 11:03:17 +0200
commitc3a8a76c9b3be581b67995bb0fd50f64ad82063d (patch)
tree88281120dba5267785f14ebab6233ec78e67c098 /pkgs/tools/security/bettercap
parent6d918cad3943b25f1dcccc668cc1e03a70e52faa (diff)
downloadnixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar.gz
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar.bz2
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar.lz
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar.xz
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.tar.zst
nixpkgs-c3a8a76c9b3be581b67995bb0fd50f64ad82063d.zip
bettercap: specify license
Diffstat (limited to 'pkgs/tools/security/bettercap')
-rw-r--r--pkgs/tools/security/bettercap/default.nix6
1 files changed, 4 insertions, 2 deletions
diff --git a/pkgs/tools/security/bettercap/default.nix b/pkgs/tools/security/bettercap/default.nix
index dbea73a54b1..e50de9fcfcd 100644
--- a/pkgs/tools/security/bettercap/default.nix
+++ b/pkgs/tools/security/bettercap/default.nix
@@ -30,10 +30,12 @@ buildGoModule rec {
   meta = with lib; {
     description = "A man in the middle tool";
     longDescription = ''
-      BetterCAP is a powerful, flexible and portable tool created to perform various types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic in realtime, sniff for credentials and much more.
+      BetterCAP is a powerful, flexible and portable tool created to perform various
+      types of MITM attacks against a network, manipulate HTTP, HTTPS and TCP traffic
+      in realtime, sniff for credentials and much more.
     '';
     homepage = "https://www.bettercap.org/";
-    license = with licenses; gpl3;
+    license = with licenses; [ gpl3Only ];
     maintainers = with maintainers; [ y0no ];
   };
 }