mirror of
https://github.com/NixOS/nixpkgs.git
synced 2024-12-04 04:46:43 +00:00
1f07bba4bf
Instead of building the `dist` make target in the derivation (requires npm and all that), we're using the upstream pre-built static assets. Upstream refers to these using a sub-module so we need to fetch that. Without this patch the web UI loads the html, but 404s on all CSS and JS assets because the `$out/share/ntopng/httpdocs/dist` directory is empty
94 lines
1.7 KiB
Nix
94 lines
1.7 KiB
Nix
{ lib
|
|
, stdenv
|
|
, autoreconfHook
|
|
, curl
|
|
, expat
|
|
, fetchFromGitHub
|
|
, git
|
|
, json_c
|
|
, libcap
|
|
, libmaxminddb
|
|
, libmysqlclient
|
|
, libpcap
|
|
, libsodium
|
|
, ndpi
|
|
, net-snmp
|
|
, openssl
|
|
, pkg-config
|
|
, rdkafka
|
|
, gtest
|
|
, rrdtool
|
|
, hiredis
|
|
, sqlite
|
|
, which
|
|
, zeromq
|
|
}:
|
|
|
|
stdenv.mkDerivation rec {
|
|
pname = "ntopng";
|
|
version = "5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "ntop";
|
|
repo = "ntopng";
|
|
rev = "refs/tags/${version}";
|
|
hash = "sha256-pIm0C1+4JLVDdXxSaQtd6ON8R2l6KG8ZXuDDuRd6dQI=";
|
|
fetchSubmodules = true;
|
|
};
|
|
|
|
preConfigure = ''
|
|
substituteInPlace Makefile.in \
|
|
--replace "/bin/rm" "rm"
|
|
'';
|
|
|
|
nativeBuildInputs = [
|
|
autoreconfHook
|
|
git
|
|
pkg-config
|
|
which
|
|
];
|
|
|
|
buildInputs = [
|
|
curl
|
|
expat
|
|
json_c
|
|
libcap
|
|
libmaxminddb
|
|
libmysqlclient
|
|
libpcap
|
|
gtest
|
|
hiredis
|
|
libsodium
|
|
net-snmp
|
|
openssl
|
|
rdkafka
|
|
rrdtool
|
|
sqlite
|
|
zeromq
|
|
];
|
|
|
|
autoreconfPhase = "bash autogen.sh";
|
|
|
|
configureFlags = [
|
|
"--with-ndpi-includes=${ndpi}/include/ndpi"
|
|
"--with-ndpi-static-lib=${ndpi}/lib/"
|
|
];
|
|
|
|
preBuild = ''
|
|
sed -e "s|\(#define CONST_BIN_DIR \).*|\1\"$out/bin\"|g" \
|
|
-e "s|\(#define CONST_SHARE_DIR \).*|\1\"$out/share\"|g" \
|
|
-i include/ntop_defines.h
|
|
'';
|
|
|
|
enableParallelBuilding = true;
|
|
|
|
meta = with lib; {
|
|
description = "High-speed web-based traffic analysis and flow collection tool";
|
|
homepage = "https://www.ntop.org/products/traffic-analysis/ntop/";
|
|
changelog = "https://github.com/ntop/ntopng/blob/${version}/CHANGELOG.md";
|
|
license = licenses.gpl3Plus;
|
|
platforms = platforms.linux ++ platforms.darwin;
|
|
maintainers = with maintainers; [ bjornfor ];
|
|
};
|
|
}
|