Skip to content

Commit

Permalink
wireshark: 2.4.2 -> 2.4.3
Browse files Browse the repository at this point in the history
(cherry picked from commit cd7ce7c)

wireshark: 2.4.3 -> 2.4.4

https://www.wireshark.org/docs/relnotes/wireshark-2.4.4.html
(cherry picked from commit fecfd3b)
  • Loading branch information
adisbladis committed Jan 15, 2018
1 parent 746b3a5 commit b5180b8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions pkgs/applications/networking/sniffers/wireshark/default.nix
Expand Up @@ -12,15 +12,15 @@ assert withQt -> !withGtk && qt5 != null;
with stdenv.lib;

let
version = "2.4.2";
version = "2.4.4";
variant = if withGtk then "gtk" else if withQt then "qt" else "cli";

in stdenv.mkDerivation {
name = "wireshark-${variant}-${version}";

src = fetchurl {
url = "http://www.wireshark.org/download/src/all-versions/wireshark-${version}.tar.xz";
sha256 = "0zglapd3sz08p2z9x8a5va3jnz17b3n5a1bskf7f2dgx6m3v5b6i";
sha256 = "0n3g28hrhifnchlz4av0blq4ykm4zaxwwxbzdm9wsba27677b6h4";
};

cmakeFlags = optional withGtk "-DBUILD_wireshark_gtk=TRUE";
Expand Down

3 comments on commit b5180b8

@bjornfor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I think it's better to not squash. (Now the commit subject is somewhat incorrect.)

@adisbladis
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Yes I'm sorry about that.

@bjornfor
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

No problem. Thanks for maintaining nixpkgs!

Please sign in to comment.