nixpkgs/pkgs/applications/networking/sniffers/ethereal/default.nix

11 lines
310 B
Nix
Raw Normal View History

{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];
}