wireshark: 4.0.6 -> 4.0.7

This commit is contained in:
Pavel Sobolev 2023-08-10 17:03:31 +03:00
parent b0509cfa05
commit adb2a4f784
No known key found for this signature in database

View file

@ -49,7 +49,7 @@
assert withQt -> qt6 != null; assert withQt -> qt6 != null;
let let
version = "4.0.6"; version = "4.0.7";
variant = if withQt then "qt" else "cli"; variant = if withQt then "qt" else "cli";
in in
stdenv.mkDerivation { stdenv.mkDerivation {
@ -61,7 +61,7 @@ stdenv.mkDerivation {
repo = "wireshark"; repo = "wireshark";
owner = "wireshark"; owner = "wireshark";
rev = "v${version}"; rev = "v${version}";
hash = "sha256-hQpnD1BWOdb1YuG2BaQI+q1EkkTF1Du/HezrYr/Fl7w="; hash = "sha256-CjSf4CfzgiXvmraM3lYBVLSfdDBSuFNIgeatj0OjYSQ=";
}; };
cmakeFlags = [ cmakeFlags = [
@ -177,7 +177,7 @@ stdenv.mkDerivation {
''; '';
platforms = platforms.linux ++ platforms.darwin; platforms = platforms.linux ++ platforms.darwin;
maintainers = with maintainers; [ bjornfor fpletz ]; maintainers = with maintainers; [ bjornfor fpletz paveloom ];
mainProgram = if withQt then "wireshark" else "tshark"; mainProgram = if withQt then "wireshark" else "tshark";
}; };
} }