4db088d36a
http://www.tcpdump.org/libpcap-changes.txt > Five CVE-2019-15161, CVE-2019-15162, CVE-2019-15163, CVE-2019-15164, CVE-2019-15165 > Fixes for CVE-2018-16301, Drop the included patch as well.
39 lines
1.0 KiB
Nix
39 lines
1.0 KiB
Nix
{ stdenv, fetchurl, flex, bison }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "libpcap";
|
|
version = "1.9.1";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
|
|
sha256 = "153h1378diqyc27jjgz6gg5nxmb4ddk006d9xg69nqavgiikflk3";
|
|
};
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
# We need to force the autodetection because detection doesn't
|
|
# work in pure build enviroments.
|
|
configureFlags = [
|
|
("--with-pcap=" + {
|
|
linux = "linux";
|
|
darwin = "bpf";
|
|
}.${stdenv.hostPlatform.parsed.kernel.name})
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
|
|
"ac_cv_linux_vers=2"
|
|
];
|
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.tcpdump.org;
|
|
description = "Packet Capture Library";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|