3
0
Fork 0
forked from mirrors/nixpkgs
nixpkgs/pkgs/development/libraries/libpcap/default.nix

47 lines
1.4 KiB
Nix
Raw Normal View History

{ stdenv, fetchurl, fetchpatch, flex, bison }:
stdenv.mkDerivation rec {
name = "libpcap-1.9.0";
2017-01-22 00:43:07 +00:00
src = fetchurl {
url = "https://www.tcpdump.org/release/${name}.tar.gz";
sha256 = "06bhydl4vr4z9c3vahl76f2j96z1fbrcl7wwismgs4sris08inrf";
};
2017-01-22 00:43:07 +00:00
nativeBuildInputs = [ flex bison ];
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})
] ++ stdenv.lib.optionals (stdenv.hostPlatform == stdenv.buildPlatform) [
"ac_cv_linux_vers=2"
];
dontStrip = stdenv.hostPlatform != stdenv.buildPlatform;
2015-07-23 23:47:16 +01:00
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
substituteInPlace configure --replace " -arch i386" ""
'';
patches = [
# https://github.com/the-tcpdump-group/libpcap/pull/735
(fetchpatch {
name = "add-missing-limits-h-include-pr735.patch";
url = https://github.com/the-tcpdump-group/libpcap/commit/aafa3512b7b742f5e66a5543e41974cc5e7eebfa.patch;
sha256 = "05zb4hx9g24gx07bi02rprk2rn7fdc1ss3249dv5x36qkasnfhvf";
})
];
2017-01-22 00:43:07 +00:00
meta = with stdenv.lib; {
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 20:33:10 +01:00
license = licenses.bsd3;
};
}