2024-06-30 08:16:52 +00:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
fetchurl,
|
|
|
|
flex,
|
|
|
|
bison,
|
|
|
|
bluez,
|
|
|
|
libnl,
|
|
|
|
libxcrypt,
|
|
|
|
pkg-config,
|
|
|
|
withBluez ? false,
|
|
|
|
withRemote ? false,
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
# for passthru.tests
|
|
|
|
# , ettercap
|
|
|
|
# , nmap
|
|
|
|
# , ostinato
|
|
|
|
# , tcpreplay
|
|
|
|
# , vde2
|
|
|
|
# , wireshark
|
|
|
|
# , python3
|
|
|
|
# , haskellPackages
|
|
|
|
}:
|
|
|
|
|
|
|
|
stdenv.mkDerivation rec {
|
|
|
|
pname = "libpcap";
|
|
|
|
version = "1.10.4";
|
|
|
|
|
|
|
|
src = fetchurl {
|
|
|
|
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
|
|
|
|
hash = "sha256-7RmgOD+tcuOtQ1/SOdfNgNZJFrhyaVUBWdIORxYOvl8=";
|
|
|
|
};
|
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
buildInputs = lib.optionals stdenv.isLinux [ libnl ] ++ lib.optionals withRemote [ libxcrypt ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
2024-06-30 08:16:52 +00:00
|
|
|
nativeBuildInputs = [
|
|
|
|
flex
|
|
|
|
bison
|
|
|
|
] ++ lib.optionals stdenv.isLinux [ pkg-config ] ++ lib.optionals withBluez [ bluez.dev ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
# We need to force the autodetection because detection doesn't
|
|
|
|
# work in pure build environments.
|
2024-06-30 08:16:52 +00:00
|
|
|
configureFlags =
|
|
|
|
[ "--with-pcap=${if stdenv.isLinux then "linux" else "bpf"}" ]
|
|
|
|
++ lib.optionals stdenv.isDarwin [ "--disable-universal" ]
|
|
|
|
++ lib.optionals withRemote [ "--enable-remote" ]
|
|
|
|
++ lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [ "ac_cv_linux_vers=2" ];
|
2024-05-02 00:46:19 +00:00
|
|
|
|
|
|
|
postInstall = ''
|
|
|
|
if [ "$dontDisableStatic" -ne "1" ]; then
|
|
|
|
rm -f $out/lib/libpcap.a
|
|
|
|
fi
|
|
|
|
'';
|
|
|
|
|
|
|
|
# passthru.tests = {
|
|
|
|
# inherit ettercap nmap ostinato tcpreplay vde2 wireshark;
|
|
|
|
# inherit (python3.pkgs) pcapy-ng scapy;
|
|
|
|
# haskell-pcap = haskellPackages.pcap;
|
|
|
|
# };
|
|
|
|
|
|
|
|
meta = with lib; {
|
|
|
|
homepage = "https://www.tcpdump.org";
|
|
|
|
description = "Packet Capture Library";
|
|
|
|
mainProgram = "pcap-config";
|
|
|
|
platforms = platforms.unix;
|
|
|
|
maintainers = with maintainers; [ fpletz ];
|
|
|
|
license = licenses.bsd3;
|
|
|
|
};
|
|
|
|
}
|