Merge pull request #29557 from teto/tshark

tshark: init at version 2.4.0
This commit is contained in:
Jörg Thalheim 2017-09-19 08:49:56 +01:00 committed by GitHub
commit bed076cdfb
1 changed files with 4 additions and 0 deletions

View File

@ -14386,6 +14386,10 @@ with pkgs;
withGtk = false;
inherit (darwin.apple_sdk.frameworks) ApplicationServices SystemConfiguration;
};
# the cli binary is actually called tshark and often packaged under this name
tshark = wireshark-cli;
# The GTK UI is deprecated by upstream. You probably want the QT version.
wireshark-gtk = wireshark-cli.override { withGtk = true; };
wireshark-qt = wireshark-cli.override { withQt = true; };