nixpkgs/pkgs/tools/networking/ntopng/default.nix

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

53 lines
1.4 KiB
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, fetchpatch, pkg-config, autoreconfHook
2022-02-16 17:47:37 +00:00
, zeromq, ndpi, json_c, openssl, libpcap, libcap, curl, libmaxminddb
, rrdtool, sqlite, libmysqlclient, expat, net-snmp
}:
stdenv.mkDerivation rec {
pname = "ntopng";
2022-02-16 17:47:37 +00:00
version = "5.2.1";
2014-08-26 09:22:05 +00:00
2022-02-16 17:47:37 +00:00
src = fetchFromGitHub {
owner = "ntop";
repo = "ntopng";
rev = version;
sha256 = "sha256-FeRERSq8F3HEelUCkA6pgNNcP94xrWy6EbJgk+cEdqc=";
};
patches = [
2022-02-16 17:47:37 +00:00
(fetchpatch {
url = "https://github.com/ntop/ntopng/commit/0aa580e1a45f248fffe6d11729ce40571f08e187.patch";
sha256 = "sha256-xqEVwfGgkNS+akbJnLZsVvEQdp9GxxUen8VkFomtcPI=";
})
];
nativeBuildInputs = [ autoreconfHook pkg-config ];
2015-10-28 12:35:09 +00:00
2022-02-16 17:47:37 +00:00
buildInputs = [
zeromq ndpi json_c openssl libpcap curl libmaxminddb rrdtool sqlite
libmysqlclient expat net-snmp libcap
];
2015-10-28 12:35:09 +00:00
2022-02-16 17:47:37 +00:00
autoreconfPhase = "bash autogen.sh";
2014-08-26 09:22:05 +00:00
preConfigure = ''
2015-10-28 12:35:09 +00:00
substituteInPlace Makefile.in --replace "/bin/rm" "rm"
2014-08-26 09:22:05 +00:00
'';
2014-08-26 09:22:05 +00:00
preBuild = ''
2022-02-16 17:47:37 +00:00
sed -e "s|\(#define CONST_BIN_DIR \).*|\1\"$out/bin\"|g" \
-e "s|\(#define CONST_SHARE_DIR \).*|\1\"$out/share\"|g" \
2015-10-28 12:35:09 +00:00
-i include/ntop_defines.h
'';
2022-02-16 17:47:37 +00:00
enableParallelBuilding = true;
meta = with lib; {
description = "High-speed web-based traffic analysis and flow collection tool";
homepage = "http://www.ntop.org/products/ntop/";
license = licenses.gpl3Plus;
platforms = platforms.linux ++ platforms.darwin;
maintainers = [ maintainers.bjornfor ];
};
}