tcptrack: new package

tcptrack is a small libpcap based program (with ncurses UI) for live TCP
connection monitoring.

It seems upstream homepage is down, so download the source code from a
fedora server instead.
This commit is contained in:
Bjørn Forsman 2013-05-12 14:03:24 +02:00
parent e18f4eb50f
commit df09b7fb5f
2 changed files with 22 additions and 0 deletions

View file

@ -0,0 +1,20 @@
{ stdenv, fetchurl, ncurses, libpcap }:
stdenv.mkDerivation rec {
name = "tcptrack-${version}";
version = "1.4.2";
src = fetchurl {
# TODO: find better URL
url = http://pkgs.fedoraproject.org/repo/pkgs/tcptrack/tcptrack-1.4.2.tar.gz/dacf71a6b5310caf1203a2171b598610/tcptrack-1.4.2.tar.gz;
sha256 = "0jbh20kjaqdiasy5s9dk53dv4vpnbh31kqcmhwz9vi3qqzhv21v6";
};
buildInputs = [ ncurses libpcap ];
meta = {
description = "libpcap based program for live TCP connection monitoring";
homepage = http://www.rhythm.cx/~steve/devel/tcptrack/; # dead link
license = stdenv.lib.licenses.lgpl21;
};
}

View file

@ -3414,6 +3414,8 @@ let
swftools = callPackage ../tools/video/swftools { };
tcptrack = callPackage ../development/tools/misc/tcptrack { };
texinfo413 = callPackage ../development/tools/misc/texinfo/4.13a.nix { };
texinfo49 = callPackage ../development/tools/misc/texinfo/4.9.nix { };
texinfo5 = callPackage ../development/tools/misc/texinfo/5.1.nix { };