2016-01-12 15:13:31 +01:00
|
|
|
{ stdenv, fetchurl, flex, bison }:
|
2005-11-03 20:41:36 +01:00
|
|
|
|
2008-09-01 15:00:24 +02:00
|
|
|
stdenv.mkDerivation rec {
|
2015-08-18 20:35:09 +02:00
|
|
|
name = "libpcap-1.7.4";
|
2010-02-05 23:00:51 +01:00
|
|
|
|
2005-11-03 20:41:36 +01:00
|
|
|
src = fetchurl {
|
2010-02-05 23:00:51 +01:00
|
|
|
url = "http://www.tcpdump.org/release/${name}.tar.gz";
|
2015-08-18 20:35:09 +02:00
|
|
|
sha256 = "1c28ykkizd7jqgzrfkg7ivqjlqs9p6lygp26bsw2i0z8hwhi3lvs";
|
2005-11-03 20:41:36 +01:00
|
|
|
};
|
2010-02-05 23:00:51 +01:00
|
|
|
|
2012-12-28 19:20:09 +01:00
|
|
|
nativeBuildInputs = [ flex bison ];
|
2010-02-05 23:00:51 +01:00
|
|
|
|
2014-10-28 22:29:05 +01:00
|
|
|
# We need to force the autodetection because detection doesn't
|
|
|
|
# work in pure build enviroments.
|
|
|
|
configureFlags =
|
2016-01-12 15:13:31 +01:00
|
|
|
if stdenv.isLinux then [ "--with-pcap=linux" ]
|
|
|
|
else if stdenv.isDarwin then [ "--with-pcap=bpf" ]
|
|
|
|
else [];
|
2009-02-12 21:28:01 +01:00
|
|
|
|
2015-07-24 00:47:16 +02:00
|
|
|
prePatch = stdenv.lib.optionalString stdenv.isDarwin ''
|
|
|
|
substituteInPlace configure --replace " -arch i386" ""
|
|
|
|
'';
|
|
|
|
|
2012-01-18 21:16:00 +01:00
|
|
|
preInstall = ''mkdir -p $out/bin'';
|
2010-02-05 23:00:51 +01:00
|
|
|
|
2010-03-10 23:22:43 +01:00
|
|
|
crossAttrs = {
|
|
|
|
# Stripping hurts in static libraries
|
|
|
|
dontStrip = true;
|
2014-10-14 13:38:20 +02:00
|
|
|
configureFlags = configureFlags ++ [ "ac_cv_linux_vers=2" ];
|
2010-03-10 23:22:43 +01:00
|
|
|
};
|
2010-09-15 14:57:49 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
homepage = http://www.tcpdump.org;
|
|
|
|
description = "Packet Capture Library";
|
|
|
|
};
|
2005-11-03 20:41:36 +01:00
|
|
|
}
|