mirror of
https://github.com/ilyakooo0/nixpkgs.git
synced 2024-11-13 21:32:23 +03:00
ntop: remove dead package
Broken since 2013. Discontinued. Use ntopng.
This commit is contained in:
parent
44274f62f5
commit
f85b5c4c07
@ -1,27 +0,0 @@
|
||||
{ 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
|
||||
'';
|
||||
|
||||
nativeBuildInputs = [ autoconf automake libtool wget libpcap gdbm zlib openssl rrdtool
|
||||
python geoip ];
|
||||
|
||||
meta = {
|
||||
description = "Traffic analysis with NetFlow and sFlow support";
|
||||
license = stdenv.lib.licenses.gpl3Plus;
|
||||
homepage = http://www.ntop.org/products/ntop/;
|
||||
platforms = stdenv.lib.platforms.linux;
|
||||
broken = true;
|
||||
};
|
||||
}
|
@ -2478,8 +2478,6 @@ let
|
||||
# ntfsprogs are merged into ntfs-3g
|
||||
ntfsprogs = pkgs.ntfs3g;
|
||||
|
||||
ntop = callPackage ../tools/networking/ntop { };
|
||||
|
||||
ntopng = callPackage ../tools/networking/ntopng { };
|
||||
|
||||
ntp = callPackage ../tools/networking/ntp {
|
||||
|
Loading…
Reference in New Issue
Block a user