forked from mirrors/nixpkgs
* Added tcpdump.
svn path=/nixpkgs/trunk/; revision=7697
This commit is contained in:
parent
941acbc53f
commit
936ba36b3a
10
pkgs/tools/networking/tcpdump/default.nix
Normal file
10
pkgs/tools/networking/tcpdump/default.nix
Normal 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];
|
||||||
|
}
|
|
@ -486,6 +486,10 @@ rec {
|
||||||
inherit fetchurl stdenv pam;
|
inherit fetchurl stdenv pam;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
tcpdump = import ../tools/networking/tcpdump {
|
||||||
|
inherit fetchurl stdenv libpcap;
|
||||||
|
};
|
||||||
|
|
||||||
tightvnc = import ../tools/admin/tightvnc {
|
tightvnc = import ../tools/admin/tightvnc {
|
||||||
inherit fetchurl stdenv x11 zlib libjpeg;
|
inherit fetchurl stdenv x11 zlib libjpeg;
|
||||||
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
inherit (xlibs) imake gccmakedep libXmu libXaw libXpm libXp;
|
||||||
|
|
Loading…
Reference in a new issue