93957f48c3
svn path=/nixpkgs/trunk/; revision=5291
11 lines
288 B
Nix
11 lines
288 B
Nix
{stdenv, fetchurl, perl, pkgconfig, glib, libpcap}:
|
|
|
|
stdenv.mkDerivation {
|
|
name = "ethereal-0.99";
|
|
src = fetchurl {
|
|
url = ftp://ftp.uni-kl.de/pub/ethereal/ethereal-0.99.0.tar.bz2;
|
|
md5 = "f9905b9d347acdc05af664a7553f7f76";
|
|
};
|
|
buildInputs = [perl pkgconfig glib libpcap];
|
|
}
|