Adding ntop. It runs for me, if using "-P directory".

svn path=/nixpkgs/trunk/; revision=33870
This commit is contained in:
Lluís Batlle i Rossell 2012-04-21 15:04:46 +00:00
parent 0842337d80
commit 2eb8304fcf
2 changed files with 31 additions and 0 deletions

View File

@ -0,0 +1,29 @@
{ stdenv, fetchurl, autoconf, automake, libtool, wget, libpcap, gdbm, zlib, openssl, rrdtool
, python, geoip }:
stdenv.mkDerivation rec {
name = "ntop-4.1.0";
src = fetchurl {
url = "mirror://sourceforge/ntop/${name}.tar.gz";
sha256 = "19440gnswnqwvkbzpay9hzmnfnhbyc2ifpl2jri8dhcyhxima7n7";
};
preConfigure = ''
./autogen.sh
cp ${libtool}/share/aclocal/libtool.m4 libtool.m4.in
'';
buildNativeInputs = [ autoconf automake libtool wget libpcap gdbm zlib openssl rrdtool
python geoip ];
meta = {
description = "Traffic analysis with NetFlow and sFlow support";
license = "GLPv3+";
homepage = http://www.ntop.org/products/ntop/;
platforms = stdenv.lib.platforms.linux;
};
}

View File

@ -1109,6 +1109,8 @@ let
# ntfsprogs are merged into ntfs-3g
ntfsprogs = pkgs.ntfs3g;
ntop = callPackage ../tools/networking/ntop { };
ntp = callPackage ../tools/networking/ntp { };
nssmdns = callPackage ../tools/networking/nss-mdns { };