2021-01-11 07:54:33 +00:00
|
|
|
{ lib, stdenv, fetchFromGitHub
|
2019-04-14 11:09:22 +01:00
|
|
|
, autoconf, automake, libtool, pkg-config
|
2021-03-14 17:50:12 +00:00
|
|
|
, bzip2, libpcap, flex, bison }:
|
2017-03-29 21:31:21 +01:00
|
|
|
|
2020-11-22 04:46:27 +00:00
|
|
|
let version = "1.6.22"; in
|
2017-03-29 21:31:21 +01:00
|
|
|
|
2019-04-14 11:09:22 +01:00
|
|
|
stdenv.mkDerivation {
|
2019-08-13 22:52:01 +01:00
|
|
|
pname = "nfdump";
|
|
|
|
inherit version;
|
2017-03-29 21:31:21 +01:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "phaag";
|
|
|
|
repo = "nfdump";
|
|
|
|
rev = "v${version}";
|
2020-11-22 04:46:27 +00:00
|
|
|
sha256 = "14x2k85ard1kp99hhd90zsmvyw24g03m84rn13gb4grm9gjggzrj";
|
2017-03-29 21:31:21 +01:00
|
|
|
};
|
|
|
|
|
2021-03-14 17:50:12 +00:00
|
|
|
nativeBuildInputs = [ autoconf automake flex libtool pkg-config bison ];
|
2019-04-14 11:09:22 +01:00
|
|
|
buildInputs = [ bzip2 libpcap ];
|
|
|
|
|
|
|
|
preConfigure = ''
|
|
|
|
# The script defaults to glibtoolize on darwin, so we pass the correct
|
|
|
|
# name explicitly.
|
|
|
|
LIBTOOLIZE=libtoolize ./autogen.sh
|
|
|
|
'';
|
|
|
|
|
|
|
|
configureFlags = [
|
|
|
|
"--enable-nsel"
|
|
|
|
"--enable-sflow"
|
|
|
|
"--enable-readpcap"
|
|
|
|
"--enable-nfpcapd"
|
|
|
|
];
|
2017-03-29 21:31:21 +01:00
|
|
|
|
2021-01-11 07:54:33 +00:00
|
|
|
meta = with lib; {
|
2017-03-29 21:31:21 +01:00
|
|
|
description = "Tools for working with netflow data";
|
|
|
|
longDescription = ''
|
|
|
|
nfdump is a set of tools for working with netflow data.
|
|
|
|
'';
|
2020-02-22 23:56:12 +00:00
|
|
|
homepage = "https://github.com/phaag/nfdump";
|
2017-03-29 21:31:21 +01:00
|
|
|
license = licenses.bsd3;
|
|
|
|
maintainers = [ maintainers.takikawa ];
|
|
|
|
platforms = platforms.unix;
|
|
|
|
};
|
|
|
|
}
|