forked from mirrors/nixpkgs
3d9103c362
Fixes CVE-2023-1801 (the vulnerable feature is not enabled by default). https://git.tcpdump.org/tcpdump/blob/tcpdump-4.99.4:/CHANGES
30 lines
703 B
Nix
30 lines
703 B
Nix
{ lib, stdenv, fetchurl, libpcap, perl }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "tcpdump";
|
|
version = "4.99.4";
|
|
|
|
src = fetchurl {
|
|
url = "http://www.tcpdump.org/release/tcpdump-${version}.tar.gz";
|
|
hash = "sha256-AjIjG7LynWvyQm5woIp+DGOg1ZqbRIY7f14jV6bkn+o=";
|
|
};
|
|
|
|
postPatch = ''
|
|
patchShebangs tests
|
|
'';
|
|
|
|
nativeCheckInputs = [ perl ];
|
|
|
|
buildInputs = [ libpcap ];
|
|
|
|
configureFlags = lib.optional (stdenv.hostPlatform != stdenv.buildPlatform) "ac_cv_linux_vers=2";
|
|
|
|
meta = with lib; {
|
|
description = "Network sniffer";
|
|
homepage = "https://www.tcpdump.org/";
|
|
license = licenses.bsd3;
|
|
maintainers = with maintainers; [ globin ];
|
|
platforms = platforms.unix;
|
|
};
|
|
}
|