3
0
Fork 0
forked from mirrors/nixpkgs

add libpcap

svn path=/nixpkgs/trunk/; revision=4211
This commit is contained in:
Armijn Hemel 2005-11-03 19:41:36 +00:00
parent 9bdcac2fe9
commit 8797e21c6c

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, flex, bison}:
stdenv.mkDerivation {
name = "libpcap-0.9.4";
src = fetchurl {
url = http://www.tcpdump.org/release/libpcap-0.9.4.tar.gz;
md5 = "79025766e8027df154cb1f32de8a7974";
};
buildInputs = [flex bison];
}