2018-12-31 00:15:33 +01:00
|
|
|
{ stdenv, fetchurl, fetchpatch, flex, bison }:
|
2005-11-03 20:41:36 +01:00
|
|
|
|
2008-09-01 15:00:24 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2018-12-04 14:54:13 +01:00
|
|
|
name = "libpcap-1.9.0";
|
2017-01-22 01:43:07 +01:00
|
|
|
|
2005-11-03 20:41:36 +01:00
|
|
|
src = fetchurl {
|
2018-06-28 20:43:35 +02:00
|
|
|
url = "https://www.tcpdump.org/release/${name}.tar.gz";
|
2018-12-04 14:54:13 +01:00
|
|
|
sha256 = "06bhydl4vr4z9c3vahl76f2j96z1fbrcl7wwismgs4sris08inrf";
|
2005-11-03 20:41:36 +01:00
|
|
|
};
|
2017-01-22 01:43:07 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ flex bison ];
|
2017-01-22 01:43:07 +01:00
|
|
|
|
2014-10-28 22:29:05 +01:00
|
|
|
# We need to force the autodetection because detection doesn't
|
|
|
|
# work in pure build enviroments.
|
2018-05-10 18:55:36 +02:00
|
|
|
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;
|
2009-02-12 21:28:01 +01:00
|
|
|
|
2015-07-24 00:47:16 +02:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
|
|
'';
|
|
|
|
|
2018-12-31 00:15:33 +01:00
|
|
|
patches = [
|
|
|
|
# https://github.com/the-tcpdump-group/libpcap/pull/735
|
|
|
|
(fetchpatch {
|
|
|
|
name = "add-missing-limits-h-include-pr735.patch";
|
|
|
|
url = https://github.com/the-tcpdump-group/libpcap/commit/aafa3512b7b742f5e66a5543e41974cc5e7eebfa.patch;
|
|
|
|
sha256 = "05zb4hx9g24gx07bi02rprk2rn7fdc1ss3249dv5x36qkasnfhvf";
|
|
|
|
})
|
|
|
|
];
|
2017-01-22 01:43:07 +01:00
|
|
|
|
|
|
|
meta = with stdenv.lib; {
|
2018-12-04 14:54:13 +01:00
|
|
|
homepage = https://www.tcpdump.org;
|
2010-09-15 14:57:49 +02:00
|
|
|
description = "Packet Capture Library";
|
2017-01-22 01:43:07 +01:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-10-18 21:33:10 +02:00
|
|
|
license = licenses.bsd3;
|
2010-09-15 14:57:49 +02:00
|
|
|
};
|
2005-11-03 20:41:36 +01:00
|
|
|
}
|