forked from mirrors/nixpkgs
ndpi: 2.8 -> 3.4
This commit is contained in:
parent
ce4f40e883
commit
00527506a5
|
@ -1,6 +1,7 @@
|
|||
{ stdenv, fetchFromGitHub, which, autoconf, automake, libtool, libpcap }:
|
||||
{ stdenv, fetchFromGitHub, which, autoconf, automake, libtool, libpcap
|
||||
, pkg-config }:
|
||||
|
||||
let version = "2.8"; in
|
||||
let version = "3.4"; in
|
||||
|
||||
stdenv.mkDerivation {
|
||||
pname = "ndpi";
|
||||
|
@ -10,13 +11,16 @@ stdenv.mkDerivation {
|
|||
owner = "ntop";
|
||||
repo = "nDPI";
|
||||
rev = version;
|
||||
sha256 = "0lc4vga89pm954vf92g9fa6xwsjkb13jd6wrcc35zy5j04nf9rzf";
|
||||
sha256 = "0xjh9gv0mq0213bjfs5ahrh6m7l7g99jjg8104c0pw54hz0p5pq1";
|
||||
};
|
||||
|
||||
configureScript = "./autogen.sh";
|
||||
|
||||
nativeBuildInputs = [which autoconf automake libtool];
|
||||
buildInputs = [libpcap];
|
||||
buildInputs = [
|
||||
libpcap
|
||||
pkg-config
|
||||
];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "A library for deep-packet inspection";
|
||||
|
|
Loading…
Reference in a new issue