1
0
Fork 1
mirror of https://github.com/NixOS/nixpkgs.git synced 2024-11-22 13:41:26 +00:00

wireshark: switch default UI from GTK to Qt

Change the 'wireshark' attribute from 'wireshark-gtk' to 'wireshark-qt'.

In Wireshark 2.x, Qt is the new/preferred UI:

  https://www.wireshark.org/docs/relnotes/wireshark-2.0.0.html

(We keep the explicit -gtk and -qt package variants, as upstream
suggests.)
This commit is contained in:
Bjørn Forsman 2016-05-22 20:06:34 +02:00
parent d809ef47cb
commit 0051ef90de

View file

@ -12570,7 +12570,7 @@ in
};
wireshark-gtk = wireshark-cli.override { withGtk = true; };
wireshark-qt = wireshark-cli.override { withQt = true; };
wireshark = wireshark-gtk;
wireshark = wireshark-qt;
wvdial = callPackage ../os-specific/linux/wvdial { };