summary refs log tree commit diff
diff options
context:
space:
mode:
authorRobert Scott <code@humanleg.org.uk>2021-06-05 12:21:24 +0100
committerGitHub <noreply@github.com>2021-06-05 12:21:24 +0100
commit1af9269ba7a497e2c338ae9aa65cf84b183a2966 (patch)
treead6c098cb13d77ca2ad499850c2e513a705fc0d0
parentb10af30846f2fedc0a50a7c84ba9ad7045630847 (diff)
parent15974f58b8c216cf268f8c2302b036db701b31cd (diff)
downloadnixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar.gz
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar.bz2
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar.lz
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar.xz
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.tar.zst
nixpkgs-1af9269ba7a497e2c338ae9aa65cf84b183a2966.zip
Merge pull request #125645 from TredwellGit/wireshark
wireshark: 3.4.5 -> 3.4.6
-rw-r--r--pkgs/applications/networking/sniffers/wireshark/default.nix5
1 files changed, 3 insertions, 2 deletions
diff --git a/pkgs/applications/networking/sniffers/wireshark/default.nix b/pkgs/applications/networking/sniffers/wireshark/default.nix
index c5a38fd2500..4fe5272bc07 100644
--- a/pkgs/applications/networking/sniffers/wireshark/default.nix
+++ b/pkgs/applications/networking/sniffers/wireshark/default.nix
@@ -10,7 +10,7 @@ assert withQt  -> qt5  != null;
 with lib;
 
 let
-  version = "3.4.5";
+  version = "3.4.6";
   variant = if withQt then "qt" else "cli";
 
 in stdenv.mkDerivation {
@@ -20,7 +20,7 @@ in stdenv.mkDerivation {
 
   src = fetchurl {
     url = "https://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
-    sha256 = "sha256-3hqv0QCh4SB8hQ0YDpfdkauNoPXra+7FRfclzbFF0zM=";
+    sha256 = "0a26kcj3n1a2kw1f3fc6s1x3rw3f3bj2cq6rp7k0kc4ciwh7i9hj";
   };
 
   cmakeFlags = [
@@ -93,6 +93,7 @@ in stdenv.mkDerivation {
 
   meta = with lib; {
     homepage = "https://www.wireshark.org/";
+    changelog = "https://www.wireshark.org/docs/relnotes/wireshark-${version}.html";
     description = "Powerful network protocol analyzer";
     license = licenses.gpl2Plus;