nixpkgs/pkgs/development/libraries/libpcap/default.nix

40 lines
1.1 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchurl, flex, bison, bluez, pkg-config, withBluez ? false }:
with lib;
stdenv.mkDerivation rec {
pname = "libpcap";
2021-06-16 11:32:22 +00:00
version = "1.10.1";
2017-01-22 00:43:07 +00:00
src = fetchurl {
url = "https://www.tcpdump.org/release/${pname}-${version}.tar.gz";
2021-06-16 11:32:22 +00:00
sha256 = "sha256-7ShfSsyvBTRPkJdXV7Pb/ncrpB0cQBwmSLf6RbcRvdQ=";
};
2017-01-22 00:43:07 +00:00
nativeBuildInputs = [ flex bison ]
++ optionals withBluez [ bluez.dev pkg-config ];
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
2020-07-27 09:50:08 +00:00
# work in pure build environments.
2018-05-10 16:55:36 +00:00
configureFlags = [
2021-04-18 11:16:54 +00:00
"--with-pcap=${if stdenv.isLinux then "linux" else "bpf"}"
] ++ optionals stdenv.isDarwin [
"--disable-universal"
] ++ optionals (stdenv.hostPlatform == stdenv.buildPlatform)
[ "ac_cv_linux_vers=2" ];
2018-05-10 16:55:36 +00:00
postInstall = ''
if [ "$dontDisableStatic" -ne "1" ]; then
rm -f $out/lib/libpcap.a
fi
'';
meta = {
homepage = "https://www.tcpdump.org";
description = "Packet Capture Library";
2017-01-22 00:43:07 +00:00
platforms = platforms.unix;
maintainers = with maintainers; [ fpletz ];
2018-10-18 19:33:10 +00:00
license = licenses.bsd3;
};
}