nixpkgs/pkgs/development/libraries/libpcap/default.nix
Yury G. Kudryashov 10376e7ba1 More metadata
svn path=/nixpkgs/trunk/; revision=23808
2010-09-15 12:57:49 +00:00

30 lines
665 B
Nix

{ stdenv, fetchurl, flex, bison }:
stdenv.mkDerivation rec {
name = "libpcap-1.1.1";
src = fetchurl {
url = "http://www.tcpdump.org/release/${name}.tar.gz";
sha256 = "11asds0r0vd9skbwfbgb1d2hqxr1d92kif4qhhqx2mbyahawm32h";
};
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" ];
};
meta = {
homepage = http://www.tcpdump.org;
description = "Packet Capture Library";
};
}