Skip to content

Commit

Permalink
tcpdump: 4.9.3 -> 4.99.0
Browse files Browse the repository at this point in the history
  • Loading branch information
LeSuisse committed Apr 11, 2021
1 parent ecd2d63 commit da55ee4
Showing 1 changed file with 8 additions and 16 deletions.
24 changes: 8 additions & 16 deletions pkgs/tools/networking/tcpdump/default.nix
@@ -1,22 +1,14 @@
{ lib, stdenv, fetchurl, libpcap, perl, fetchpatch }:
{ lib, stdenv, fetchurl, libpcap, perl }:

stdenv.mkDerivation rec {
pname = "tcpdump";
version = "4.9.3";
version = "4.99.0";

src = fetchurl {
url = "http://www.tcpdump.org/release/${pname}-${version}.tar.gz";
sha256 = "0434vdcnbqaia672rggjzdn4bb8p8dchz559yiszzdk0sjrprm1c";
sha256 = "0hmqh2fx8rgs9v1mk3vpywj61xvkifz260q685xllxr8jmxg3wlc";
};

patches = [
# Patch for CVE-2020-8037
(fetchpatch {
url = "https://github.com/the-tcpdump-group/tcpdump/commit/32027e199368dad9508965aae8cd8de5b6ab5231.patch";
sha256 = "sha256-bO3aV032ru9+M/9isBRjmH8jTZLKj9Zf9ha2rmOaZwc=";
})
];

postPatch = ''
patchShebangs tests
'';
Expand All @@ -29,11 +21,11 @@ stdenv.mkDerivation rec {
(stdenv.hostPlatform != stdenv.buildPlatform)
"ac_cv_linux_vers=2";

meta = {
meta = with lib; {
description = "Network sniffer";
homepage = "http://www.tcpdump.org/";
license = "BSD-style";
maintainers = with lib.maintainers; [ globin ];
platforms = lib.platforms.unix;
homepage = "https://www.tcpdump.org/";
license = licenses.bsd3;
maintainers = with maintainers; [ globin ];
platforms = platforms.unix;
};
}

0 comments on commit da55ee4

Please sign in to comment.