da297ef8aa
* libpcap to 1.8.1 -> 1.9.0 (#51216) Changelog: http://www.tcpdump.org/libpcap-changes.txt * libpcap: refresh meta.homepage and fix SHA hash
39 lines
1.1 KiB
Nix
39 lines
1.1 KiB
Nix
{ stdenv, fetchurl, flex, bison }:
|
|
|
|
stdenv.mkDerivation rec {
|
|
name = "libpcap-1.9.0";
|
|
|
|
src = fetchurl {
|
|
url = "https://www.tcpdump.org/release/${name}.tar.gz";
|
|
sha256 = "06bhydl4vr4z9c3vahl76f2j96z1fbrcl7wwismgs4sris08inrf";
|
|
};
|
|
|
|
nativeBuildInputs = [ flex bison ];
|
|
|
|
# We need to force the autodetection because detection doesn't
|
|
# work in pure build enviroments.
|
|
configureFlags = [
|
|
("--with-pcap=" + {
|
|
linux = "linux";
|
|
darwin = "bpf";
|
|
}.${stdenv.hostPlatform.parsed.kernel.name})
|
|
] ++ stdenv.lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
|
|
"ac_cv_linux_vers=2"
|
|
];
|
|
|
|
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
|
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
'';
|
|
|
|
preInstall = ''mkdir -p $out/bin'';
|
|
|
|
meta = with stdenv.lib; {
|
|
homepage = https://www.tcpdump.org;
|
|
description = "Packet Capture Library";
|
|
platforms = platforms.unix;
|
|
maintainers = with maintainers; [ fpletz ];
|
|
license = licenses.bsd3;
|
|
};
|
|
}
|