add ethereal

svn path=/nixpkgs/trunk/; revision=4212
This commit is contained in:
Armijn Hemel 2005-11-03 19:55:05 +00:00
parent 8797e21c6c
commit 98efb8f3ab

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
stdenv.mkDerivation {
name = "ethereal-0.10.13";
src = fetchurl {
url = ftp://ftp.sunet.se/pub/network/monitoring/ethereal/ethereal-0.10.13.tar.bz2;
md5 = "08d277951ff6f6a93c752abebd85d5bc";
};
buildInputs = [perl pkgconfig glib libpcap];
}