1 { lib, stdenv, fetchFromGitHub
2 , autoconf, automake, libtool, pkg-config
3 , bzip2, libpcap, flex, bison }:
5 let version = "1.6.22"; in
11 src = fetchFromGitHub {
15 sha256 = "14x2k85ard1kp99hhd90zsmvyw24g03m84rn13gb4grm9gjggzrj";
18 nativeBuildInputs = [ autoconf automake flex libtool pkg-config bison ];
19 buildInputs = [ bzip2 libpcap ];
22 # The script defaults to glibtoolize on darwin, so we pass the correct
24 LIBTOOLIZE=libtoolize ./autogen.sh
35 description = "Tools for working with netflow data";
37 nfdump is a set of tools for working with netflow data.
39 homepage = "https://github.com/phaag/nfdump";
40 license = licenses.bsd3;
41 maintainers = [ maintainers.takikawa ];
42 platforms = platforms.unix;