nixpkgs/pkgs/applications/networking/sniffers/ethereal/default.nix
Eelco Dolstra 1442e8ec22 * Copy a bunch of files to nix.cs.uu.nl.
svn path=/nixpkgs/trunk/; revision=6711
2006-10-12 13:50:54 +00:00

11 lines
289 B
Nix

{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
stdenv.mkDerivation {
name = "ethereal-0.99";
src = fetchurl {
url = http://nix.cs.uu.nl/dist/tarballs/ethereal-0.99.0.tar.bz2;
md5 = "f9905b9d347acdc05af664a7553f7f76";
};
buildInputs = [perl pkgconfig glib libpcap];
}