wireshark: 2.4.2 -> 2.4.3

This commit is contained in:
adisbladis 2018-01-04 09:34:33 +01:00
parent 31898ec13a
commit cd7ce7ca70
No known key found for this signature in database
GPG key ID: ED58F95069B004F5

View file

@ -12,7 +12,7 @@ assert withQt -> !withGtk && qt5 != null;
with stdenv.lib;
let
version = "2.4.2";
version = "2.4.3";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";
in stdenv.mkDerivation {
@ -20,7 +20,7 @@ in stdenv.mkDerivation {
src = fetchurl {
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
sha256 = "0zglapd3sz08p2z9x8a5va3jnz17b3n5a1bskf7f2dgx6m3v5b6i";
sha256 = "0bpiby916k3k8bm7q8b1dflva6zs0a4ircskrck0d538dfcrb50q";
};
cmakeFlags = optional withGtk "-DBUILD_wireshark_gtk=TRUE";