summary refs log tree commit diff
path: root/pkgs/development/libraries/libpcap/default.nix
blob: fbd73230d7355c2a38b08ed461b40782374957c0 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
{ stdenv, fetchurl, flex, bison }:

stdenv.mkDerivation rec {
  name = "libpcap-1.0.0";
  
  src = fetchurl {
    url = "http://www.tcpdump.org/release/${name}.tar.gz";
    sha256 = "1h3kmj485qz1i08xs4sc3a0bmhs1rvq0h7gycs7paap2szhw8552";
  };
  
  buildInputs = [ flex bison ];
  
  configureFlags = "--with-pcap=linux";

  preInstall = ''ensureDir $out/bin'';
  
  patches = [ ./libpcap_amd64.patch ];
}