3
0
Fork 0
forked from mirrors/nixpkgs

* Added tcpdump.

svn path=/nixpkgs/trunk/; revision=7697
This commit is contained in:
Eelco Dolstra 2007-01-16 14:35:08 +00:00
parent 941acbc53f
commit 936ba36b3a
2 changed files with 14 additions and 0 deletions

View file

@ -0,0 +1,10 @@
{stdenv, fetchurl, libpcap}:
stdenv.mkDerivation {
name = "tcpdump-3.9.5";
src = fetchurl {
url = http://www.tcpdump.org/release/tcpdump-3.9.5.tar.gz;
md5 = "2135e7b1f09af0eaf66d2af822bed44a";
};
buildInputs = [libpcap];
}

View file

@ -486,6 +486,10 @@ rec {
inherit fetchurl stdenv pam;
};
tcpdump = import ../tools/networking/tcpdump {
inherit fetchurl stdenv libpcap;
};
tightvnc = import ../tools/admin/tightvnc {
inherit fetchurl stdenv x11 zlib libjpeg;
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;