2020-06-04 07:29:38 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison, bluez, pkgconfig, withBluez ? false }:
|
|
|
|
|
|
|
|
with stdenv.lib;
|
2005-11-03 19:41:36 +00:00
|
|
|
|
2008-09-01 14:00:24 +01:00
|
|
|
stdenv.mkDerivation rec {
|
2019-10-02 13:24:50 +01:00
|
|
|
pname = "libpcap";
|
|
|
|
version = "1.9.1";
|
2017-01-22 00:43:07 +00:00
|
|
|
|
2005-11-03 19:41:36 +00:00
|
|
|
src = fetchurl {
|
2019-10-02 13:24:50 +01:00
|
|
|
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
|
|
|
|
sha256 = "153h1378diqyc27jjgz6gg5nxmb4ddk006d9xg69nqavgiikflk3";
|
2005-11-03 19:41:36 +00:00
|
|
|
};
|
2017-01-22 00:43:07 +00:00
|
|
|
|
2020-06-04 07:29:38 +01:00
|
|
|
nativeBuildInputs = [ flex bison ]
|
|
|
|
++ optionals withBluez [ bluez.dev pkgconfig ];
|
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.
|
2018-05-10 17:55:36 +01:00
|
|
|
configureFlags = [
|
|
|
|
("--with-pcap=" + {
|
|
|
|
linux = "linux";
|
|
|
|
darwin = "bpf";
|
|
|
|
}.${stdenv.hostPlatform.parsed.kernel.name})
|
2020-06-04 07:29:38 +01:00
|
|
|
] ++ optionals (stdenv.hostPlatform == stdenv.buildPlatform)
|
|
|
|
[ "ac_cv_linux_vers=2" ];
|
2018-05-10 17:55:36 +01:00
|
|
|
|
2020-06-04 07:29:38 +01:00
|
|
|
prePatch = optionalString stdenv.isDarwin ''
|
2015-07-23 23:47:16 +01:00
|
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
|
|
'';
|
|
|
|
|
2020-03-07 05:39:53 +00:00
|
|
|
postInstall = ''
|
|
|
|
rm -f $out/lib/libpcap.a
|
|
|
|
'';
|
|
|
|
|
2020-06-04 07:29:38 +01:00
|
|
|
meta = {
|
2020-04-01 02:11:51 +01:00
|
|
|
homepage = "https://www.tcpdump.org";
|
2010-09-15 13:57:49 +01:00
|
|
|
description = "Packet Capture Library";
|
2017-01-22 00:43:07 +00:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-10-18 20:33:10 +01:00
|
|
|
license = licenses.bsd3;
|
2010-09-15 13:57:49 +01:00
|
|
|
};
|
2005-11-03 19:41:36 +00:00
|
|
|
}
|