about summary refs log tree commit diff
path: root/pkgs/top-level/all-packages.nix
diff options
context:
space:
mode:
authorMatthieu Coudron <mattator@gmail.com>2019-03-03 17:15:03 +0900
committerMatthieu Coudron <mattator@gmail.com>2019-04-09 11:09:06 +0900
commit5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3 (patch)
tree830ecafcc103d1e05a8d34ad1be44bc511bb6680 /pkgs/top-level/all-packages.nix
parent2fdca0eb58698a1c379d55e23a6dbde51416e048 (diff)
downloadnixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar.gz
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar.bz2
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar.lz
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar.xz
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.tar.zst
nixlib-5e19cec49185c8ca2d29d7bb7aa7842b0a887cb3.zip
wireshark: 2.6.6 -> 3.0.1
See https://www.wireshark.org/docs/relnotes/wireshark-3.0.0.html.
Drops gtk build.
Diffstat (limited to 'pkgs/top-level/all-packages.nix')
-rw-r--r--pkgs/top-level/all-packages.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 2653ad8ae414..325ae7f90fbf 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -17467,14 +17467,13 @@ in
   welle-io = libsForQt5.callPackage ../applications/radio/welle-io { };
 
   wireshark = callPackage ../applications/networking/sniffers/wireshark {
-    qt5 = qt59;
     inherit (darwin.apple_sdk.frameworks) ApplicationServices SystemConfiguration;
   };
   wireshark-qt = wireshark;
 
   # The GTK UI is deprecated by upstream. You probably want the QT version.
-  wireshark-gtk = wireshark.override { withGtk = true; withQt = false; };
-  wireshark-cli = wireshark.override { withGtk = false; withQt = false; };
+  wireshark-gtk = throw "Not supported anymore. Use wireshark-qt or wireshark-cli instead.";
+  wireshark-cli = wireshark.override { withQt = false; };
 
   fbida = callPackage ../applications/graphics/fbida { };