2021-01-21 09:00:13 -08:00
|
|
|
{ lib, stdenv, fetchurl, flex, bison, bluez, pkg-config, withBluez ? false }:
|
2020-06-03 23:29:38 -07:00
|
|
|
|
2021-01-21 09:00:13 -08:00
|
|
|
with lib;
|
2005-11-03 11:41:36 -08:00
|
|
|
|
2008-09-01 06:00:24 -07:00
|
|
|
stdenv.mkDerivation rec {
|
2019-10-02 05:24:50 -07:00
|
|
|
pname = "libpcap";
|
2021-01-19 15:55:37 -08:00
|
|
|
version = "1.10.0";
|
2017-01-21 16:43:07 -08:00
|
|
|
|
2005-11-03 11:41:36 -08:00
|
|
|
src = fetchurl {
|
2019-10-02 05:24:50 -07:00
|
|
|
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
|
2021-01-19 15:55:37 -08:00
|
|
|
sha256 = "sha256-jRK0JiPu7+6HLxI70NyF1TWwDfTULoZfmTxA97/JKx4=";
|
2005-11-03 11:41:36 -08:00
|
|
|
};
|
2017-01-21 16:43:07 -08:00
|
|
|
|
2020-06-03 23:29:38 -07:00
|
|
|
nativeBuildInputs = [ flex bison ]
|
2021-01-18 22:50:56 -08:00
|
|
|
++ optionals withBluez [ bluez.dev pkg-config ];
|
2017-01-21 16:43:07 -08:00
|
|
|
|
2014-10-28 14:29:05 -07:00
|
|
|
# We need to force the autodetection because detection doesn't
|
2020-07-27 02:50:08 -07:00
|
|
|
# work in pure build environments.
|
2018-05-10 09:55:36 -07:00
|
|
|
configureFlags = [
|
2021-04-18 04:16:54 -07:00
|
|
|
"--with-pcap=${if stdenv.isLinux then "linux" else "bpf"}"
|
2021-02-06 10:43:45 -08:00
|
|
|
] ++ optionals stdenv.isDarwin [
|
|
|
|
"--disable-universal"
|
2020-06-03 23:29:38 -07:00
|
|
|
] ++ optionals (stdenv.hostPlatform == stdenv.buildPlatform)
|
|
|
|
[ "ac_cv_linux_vers=2" ];
|
2018-05-10 09:55:36 -07:00
|
|
|
|
2020-06-21 06:06:55 -07:00
|
|
|
postInstall = ''
|
|
|
|
if [ "$dontDisableStatic" -ne "1" ]; then
|
|
|
|
rm -f $out/lib/libpcap.a
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
2020-06-03 23:29:38 -07:00
|
|
|
meta = {
|
2020-03-31 18:11:51 -07:00
|
|
|
homepage = "https://www.tcpdump.org";
|
2010-09-15 05:57:49 -07:00
|
|
|
description = "Packet Capture Library";
|
2017-01-21 16:43:07 -08:00
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
2018-10-18 12:33:10 -07:00
|
|
|
license = licenses.bsd3;
|
2010-09-15 05:57:49 -07:00
|
|
|
};
|
2005-11-03 11:41:36 -08:00
|
|
|
}
|