Upgrade ntopng to 6.6 (#490337)

This commit is contained in:
Bjørn Forsman
2026-02-22 08:00:23 +00:00
committed by GitHub
2 changed files with 7 additions and 4 deletions
+2 -2
View File
@@ -12,13 +12,13 @@
stdenv.mkDerivation (finalAttrs: {
pname = "ndpi";
version = "4.10";
version = "5.0";
src = fetchFromGitHub {
owner = "ntop";
repo = "nDPI";
tag = finalAttrs.version;
hash = "sha256-iXqvDMJsOXcg9YkqKFgInLLfH6j/HEp4bEaIl6dpVtc=";
hash = "sha256-Elnj6qDuT8UWDxmasiHOt5DxC7GcH5zgrp3J3LYcl0c=";
};
nativeBuildInputs = [
+5 -2
View File
@@ -23,17 +23,18 @@
sqlite,
which,
zeromq,
cmake,
}:
stdenv.mkDerivation (finalAttrs: {
pname = "ntopng";
version = "6.2";
version = "6.6";
src = fetchFromGitHub {
owner = "ntop";
repo = "ntopng";
tag = finalAttrs.version;
hash = "sha256-8PG18mOV/6EcBpKt9kLyI40OLDnpnc2b4IUu9JbK/Co=";
hash = "sha256-BYJtsEuxmo6jzqCoC/A5vDAiFSGqy8XFyqooGDTZE40=";
fetchSubmodules = true;
};
@@ -47,6 +48,7 @@ stdenv.mkDerivation (finalAttrs: {
git
pkg-config
which
cmake
];
buildInputs = [
@@ -91,6 +93,7 @@ stdenv.mkDerivation (finalAttrs: {
cp -r doc/README.geolocation.md "$out/share/ntopng/doc/"
'';
dontUseCmakeConfigure = true;
enableParallelBuilding = true;
meta = {