about summary refs log tree commit diff
path: root/pkgs/development/libraries
diff options
context:
space:
mode:
authorWeijia Wang <9713184+wegank@users.noreply.github.com>2024-02-05 00:28:33 +0100
committerGitHub <noreply@github.com>2024-02-05 00:28:33 +0100
commit254301da9537cce3324417e59fe362780b14e308 (patch)
tree316e76adcdeb03c5596c60c9d9d0b5e1ff9f08d0 /pkgs/development/libraries
parent9f491407733f72dce644f2b4223bf33d661da50a (diff)
parent923ad25c7ea8a9b4e96ba6471e5cabd21e14b81a (diff)
downloadnixlib-254301da9537cce3324417e59fe362780b14e308.tar
nixlib-254301da9537cce3324417e59fe362780b14e308.tar.gz
nixlib-254301da9537cce3324417e59fe362780b14e308.tar.bz2
nixlib-254301da9537cce3324417e59fe362780b14e308.tar.lz
nixlib-254301da9537cce3324417e59fe362780b14e308.tar.xz
nixlib-254301da9537cce3324417e59fe362780b14e308.tar.zst
nixlib-254301da9537cce3324417e59fe362780b14e308.zip
Merge pull request #284855 from ajs124/upd/ntopng
ntopng: 5.6 -> 6.0
Diffstat (limited to 'pkgs/development/libraries')
-rw-r--r--pkgs/development/libraries/ndpi/default.nix20
1 files changed, 8 insertions, 12 deletions
diff --git a/pkgs/development/libraries/ndpi/default.nix b/pkgs/development/libraries/ndpi/default.nix
index d9d8f5895a2d..94e249425717 100644
--- a/pkgs/development/libraries/ndpi/default.nix
+++ b/pkgs/development/libraries/ndpi/default.nix
@@ -1,7 +1,6 @@
 { lib
 , stdenv
-, autoconf
-, automake
+, autoreconfHook
 , fetchFromGitHub
 , json_c
 , libpcap
@@ -10,22 +9,19 @@
 , which
 }:
 
-stdenv.mkDerivation rec {
+stdenv.mkDerivation (finalAttrs: {
   pname = "ndpi";
-  version = "4.6";
+  version = "4.8";
 
   src = fetchFromGitHub {
     owner = "ntop";
     repo = "nDPI";
-    rev = "refs/tags/${version}";
-    hash = "sha256-S0lVh5FZewPbYG/1ikI2RroCSC7OI8Xmfeq73hYCHnY=";
+    rev = "refs/tags/${finalAttrs.version}";
+    hash = "sha256-V3hRDQ141pbR5jJK2QlP7BF2CEbuzqIvo+iTx3EGhRY=";
   };
 
-  configureScript = "./autogen.sh";
-
   nativeBuildInputs = [
-    autoconf
-    automake
+    autoreconfHook
     libtool
     pkg-config
     which
@@ -42,10 +38,10 @@ stdenv.mkDerivation rec {
       nDPI is a library for deep-packet inspection based on OpenDPI.
     '';
     homepage = "https://www.ntop.org/products/deep-packet-inspection/ndpi/";
-    changelog = "https://github.com/ntop/nDPI/blob/${version}/CHANGELOG.md";
+    changelog = "https://github.com/ntop/nDPI/blob/${finalAttrs.version}/CHANGELOG.md";
     license = with licenses; [ lgpl3Plus bsd3 ];
     maintainers = with maintainers; [ takikawa ];
     mainProgram = "ndpiReader";
     platforms = with platforms; unix;
   };
-}
+})