nixpkgs/pkgs/development/libraries/ndpi/default.nix

36 lines
871 B
Nix
Raw Normal View History

{ lib, stdenv, fetchFromGitHub, which, autoconf, automake, libtool, libpcap
2020-10-26 23:18:17 +01:00
, pkg-config }:
2017-02-22 09:19:47 +01:00
2020-10-26 23:18:17 +01:00
let version = "3.4"; in
2017-02-22 09:19:47 +01:00
2019-08-13 23:52:01 +02:00
stdenv.mkDerivation {
2019-08-13 23:52:01 +02:00
pname = "ndpi";
inherit version;
2017-02-22 09:19:47 +01:00
src = fetchFromGitHub {
owner = "ntop";
repo = "nDPI";
2019-09-09 01:38:31 +02:00
rev = version;
2020-10-26 23:18:17 +01:00
sha256 = "0xjh9gv0mq0213bjfs5ahrh6m7l7g99jjg8104c0pw54hz0p5pq1";
2017-02-22 09:19:47 +01:00
};
configureScript = "./autogen.sh";
nativeBuildInputs = [which autoconf automake libtool];
2020-10-26 23:18:17 +01:00
buildInputs = [
libpcap
pkg-config
];
2017-02-22 09:19:47 +01:00
meta = with lib; {
2017-02-22 09:19:47 +01:00
description = "A library for deep-packet inspection";
longDescription = ''
nDPI is a library for deep-packet inspection based on OpenDPI.
'';
homepage = "https://www.ntop.org/products/deep-packet-inspection/ndpi/";
2017-02-22 09:19:47 +01:00
license = with licenses; lgpl3;
maintainers = with maintainers; [ takikawa ];
platforms = with platforms; unix;
};
}