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

31 lines
835 B
Nix
Raw Normal View History

2017-02-22 08:19:47 +00:00
{ stdenv, fetchFromGitHub, which, autoconf, automake, libtool, libpcap }:
let version = "2.2"; in
2017-02-22 08:19:47 +00:00
stdenv.mkDerivation rec {
name = "ndpi-${version}";
src = fetchFromGitHub {
owner = "ntop";
repo = "nDPI";
rev = "${version}";
sha256 = "06gg8lhn944arlczmv5i40jkjdnl1nrvsmvm843l9ybcswpayv4m";
2017-02-22 08:19:47 +00:00
};
configureScript = "./autogen.sh";
nativeBuildInputs = [which autoconf automake libtool];
buildInputs = [libpcap];
meta = with stdenv.lib; {
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 08:19:47 +00:00
license = with licenses; lgpl3;
maintainers = with maintainers; [ takikawa ];
platforms = with platforms; unix;
};
}