nixpkgs/pkgs/development/libraries/libpcap/default.nix
Armijn Hemel f7ab7efff1 update tcpdump to 4.1.0, libpcap to 1.1.0
svn path=/nixpkgs/trunk/; revision=20938
2010-04-04 14:57:26 +00:00

25 lines
565 B
Nix

{ stdenv, fetchurl, flex, bison }:
stdenv.mkDerivation rec {
name = "libpcap-1.1.0";
src = fetchurl {
url = "http://www.tcpdump.org/release/${name}.tar.gz";
sha256 = "073hy17pvm203c0z3zpkp1b37sblcgf49c6a03az7kbniizbc07b";
};
buildNativeInputs = [ flex bison ];
configureFlags = "--with-pcap=linux";
preInstall = ''ensureDir $out/bin'';
patches = [ ./libpcap_amd64.patch ];
crossAttrs = {
# Stripping hurts in static libraries
dontStrip = true;
configureFlags = [ "--with-pcap=linux" "ac_cv_linux_vers=2" ];
};
}