tshark: alias to wireshark-cli

the tshark alias got removed in https://github.com/NixOS/nixpkgs/pull/161146.
To have a longstanding alias, it was recommended to add it next to the
attribute.
This commit is contained in:
Matthieu Coudron 2022-03-06 00:57:27 +01:00 committed by Matthieu Coudron
parent 3af4b065f1
commit 8cf2630925

View File

@ -25792,6 +25792,7 @@ with pkgs;
};
wireshark-qt = wireshark;
tshark = wireshark-cli;
wireshark-cli = wireshark.override {
withQt = false;
libpcap = libpcap.override { withBluez = stdenv.isLinux; };