nixpkgs/pkgs/development/libraries/libpcap/default.nix
Eelco Dolstra 941acbc53f * libpcap 0.9.5. Also fix an impurity in configure (it looks for
/usr/include/blablah/socket.h to determine which packet interface to
  build).

svn path=/nixpkgs/trunk/; revision=7696
2007-01-16 14:30:38 +00:00

14 lines
350 B
Nix

{stdenv, fetchurl, flex, bison}:
stdenv.mkDerivation {
name = "libpcap-0.9.5";
src = fetchurl {
url = http://www.tcpdump.org/release/libpcap-0.9.5.tar.gz;
md5 = "b0626ad59004fe5767ddd2ce743a2271";
};
buildInputs = [flex bison];
configureFlags = "
${if stdenv.system == "i686-linux" then "--with-pcap=linux" else ""}
";
}