Skip to content
This repository was archived by the owner on Apr 12, 2021. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: 7c40ff549568
Choose a base ref
...
head repository: NixOS/nixpkgs-channels
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: 9527b016e7a3
Choose a head ref
  • 1 commit
  • 1 file changed
  • 1 contributor

Commits on Aug 30, 2018

  1. wireshark: 2.4.7 -> 2.4.9 (security)

    https://www.wireshark.org/docs/relnotes/wireshark-2.4.8.html
    https://www.wireshark.org/docs/relnotes/wireshark-2.4.9.html
    
    I briefly tested capturing some traffic via the GUI.
    master uses 2.6.x already; /cc #45796.
    vcunat committed Aug 30, 2018
    Copy the full SHA
    9527b01 View commit details
Showing with 2 additions and 2 deletions.
  1. +2 −2 pkgs/applications/networking/sniffers/wireshark/default.nix
4 changes: 2 additions & 2 deletions pkgs/applications/networking/sniffers/wireshark/default.nix
Original file line number Diff line number Diff line change
@@ -12,15 +12,15 @@ assert withQt -> !withGtk && qt5 != null;
with stdenv.lib;

let
version = "2.4.7";
version = "2.4.9";
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 = "0i2ggkkx7fphsk7kv9kygsf5pcaf4vgnqgi8mj1rrf2gfdl3rjsy";
sha256 = "1qrkqrm96gj3wah42qj62axgdzin8cwiscpcwbq3d596cm3g5i33";
};

cmakeFlags = [