2017-03-09 13:40:02 +00:00
|
|
|
{ stdenv, fetchurl, fetchpatch, flex, bison }:
|
2005-11-03 19:41:36 +00:00
|
|
|
|
2008-09-01 14:00:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2017-01-22 00:43:07 +00:00
|
|
|
name = "libpcap-1.8.1";
|
|
|
|
|
2005-11-03 19:41:36 +00:00
|
|
|
src = fetchurl {
|
2010-02-05 22:00:51 +00:00
|
|
|
url = "http://www.tcpdump.org/release/${name}.tar.gz";
|
2017-01-22 00:43:07 +00:00
|
|
|
sha256 = "07jlhc66z76dipj4j5v3dig8x6h3k6cb36kmnmpsixf3zmlvqgb7";
|
2005-11-03 19:41:36 +00:00
|
|
|
};
|
2017-01-22 00:43:07 +00:00
|
|
|
|
2012-12-28 18:20:09 +00:00
|
|
|
nativeBuildInputs = [ flex bison ];
|
2017-01-22 00:43:07 +00:00
|
|
|
|
2014-10-28 21:29:05 +00:00
|
|
|
# We need to force the autodetection because detection doesn't
|
|
|
|
# work in pure build enviroments.
|
|
|
|
configureFlags =
|
2016-01-12 14:13:31 +00:00
|
|
|
if stdenv.isLinux then [ "--with-pcap=linux" ]
|
|
|
|
else if stdenv.isDarwin then [ "--with-pcap=bpf" ]
|
|
|
|
else [];
|
2009-02-12 20:28:01 +00:00
|
|
|
|
2015-07-23 23:47:16 +01:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
|
|
'';
|
|
|
|
|
2017-03-09 13:40:02 +00:00
|
|
|
patches = [
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://sources.debian.net/data/main/libp/libpcap/1.8.1-3/debian/patches/disable-remote.diff";
|
|
|
|
sha256 = "0dvjax9c0spvq8cdjnkbnm65wlzaml259yragf95kzg611vszfmj";
|
|
|
|
})
|
2017-12-16 15:22:28 +00:00
|
|
|
# See https://github.com/wjt/bustle/commit/f62cf6bfa662af4ae39effbbd4891bc619e3b4e9
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/the-tcpdump-group/libpcap/commit/2be9c29d45fb1fab8e9549342a30c160b7dea3e1.patch";
|
|
|
|
sha256 = "1g8mh942vr0abn48g0bdvi4gmhq1bz0l80276603y7064qhy3wq5";
|
|
|
|
})
|
|
|
|
(fetchpatch {
|
|
|
|
url = "https://github.com/the-tcpdump-group/libpcap/commit/1a6b088a88886eac782008f37a7219a32b86da45.patch";
|
|
|
|
sha256 = "1n5ylm7ch3i1lh4y2q16b0vabgym8g8mqiqxpqcdkjdn05c1wflr";
|
|
|
|
})
|
2017-03-09 13:40:02 +00:00
|
|
|
];
|
|
|
|
|
2012-01-18 20:16:00 +00:00
|
|
|
preInstall = ''mkdir -p $out/bin'';
|
2017-01-22 00:43:07 +00:00
|
|
|
|
2010-03-10 22:22:43 +00:00
|
|
|
crossAttrs = {
|
|
|
|
# Stripping hurts in static libraries
|
|
|
|
dontStrip = true;
|
2014-10-14 12:38:20 +01:00
|
|
|
configureFlags = configureFlags ++ [ "ac_cv_linux_vers=2" ];
|
2010-03-10 22:22:43 +00:00
|
|
|
};
|
2010-09-15 13:57:49 +01:00
|
|
|
|
2017-01-22 00:43:07 +00:00
|
|
|
meta = with stdenv.lib; {
|
2010-09-15 13:57:49 +01:00
|
|
|
homepage = http://www.tcpdump.org;
|
|
|
|
description = "Packet Capture Library";
|
2017-01-22 00:43:07 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2010-09-15 13:57:49 +01:00
|
|
|
};
|
2005-11-03 19:41:36 +00:00
|
|
|
}
|