summary refs log tree commit diff
path: root/pkgs/top-level
diff options
context:
space:
mode:
authorMatthieu Coudron <mcoudron@hotmail.com>2022-03-06 00:57:27 +0100
committerMatthieu Coudron <teto@users.noreply.github.com>2022-03-06 16:47:47 +0100
commit8cf2630925453666cbdafe3c150ae0f42bc7c632 (patch)
treec828e05e30dc80b1923ec085ecd567ea8d78c3ce /pkgs/top-level
parent3af4b065f1ba10c0a78a0b42237aa29d7e212472 (diff)
downloadnixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar.gz
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar.bz2
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar.lz
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar.xz
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.tar.zst
nixpkgs-8cf2630925453666cbdafe3c150ae0f42bc7c632.zip
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.
Diffstat (limited to 'pkgs/top-level')
-rw-r--r--pkgs/top-level/all-packages.nix1
1 files changed, 1 insertions, 0 deletions
diff --git a/pkgs/top-level/all-packages.nix b/pkgs/top-level/all-packages.nix
index 575ca2a4c02..f900dcf7333 100644
--- a/pkgs/top-level/all-packages.nix
+++ b/pkgs/top-level/all-packages.nix
@@ -25792,6 +25792,7 @@ with pkgs;
   };
   wireshark-qt = wireshark;
 
+  tshark = wireshark-cli;
   wireshark-cli = wireshark.override {
     withQt = false;
     libpcap = libpcap.override { withBluez = stdenv.isLinux; };