nixpkgs/pkgs/applications/networking/sniffers/ethereal/default.nix
Eelco Dolstra 53c56afcfe * Fix some broken URLs.
svn path=/nixpkgs/trunk/; revision=4622
2006-01-30 15:52:15 +00:00

11 lines
310 B
Nix

{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
stdenv.mkDerivation {
name = "ethereal-0.10.14";
src = fetchurl {
url = ftp://ftp.sunet.se/pub/network/monitoring/ethereal/ethereal-0.10.14.tar.bz2;
md5 = "297f678c037f88429250830e924b8fa0";
};
buildInputs = [perl pkgconfig glib libpcap];
}