linux_xanmod: 5.11.14 -> 5.11.15
[NixPkgs.git] / pkgs / tools / networking / nfdump / default.nix
blob1319e7997dde5e5bfccfd6618bdb9f3099db561b
1 { lib, stdenv, fetchFromGitHub
2 , autoconf, automake, libtool, pkg-config
3 , bzip2, libpcap, flex, bison }:
5 let version = "1.6.22"; in
7 stdenv.mkDerivation {
8   pname = "nfdump";
9   inherit version;
11   src = fetchFromGitHub {
12     owner = "phaag";
13     repo = "nfdump";
14     rev = "v${version}";
15     sha256 = "14x2k85ard1kp99hhd90zsmvyw24g03m84rn13gb4grm9gjggzrj";
16   };
18   nativeBuildInputs = [ autoconf automake flex libtool pkg-config bison ];
19   buildInputs = [ bzip2 libpcap ];
21   preConfigure = ''
22     # The script defaults to glibtoolize on darwin, so we pass the correct
23     # name explicitly.
24     LIBTOOLIZE=libtoolize ./autogen.sh
25   '';
27   configureFlags = [
28     "--enable-nsel"
29     "--enable-sflow"
30     "--enable-readpcap"
31     "--enable-nfpcapd"
32   ];
34   meta = with lib; {
35     description = "Tools for working with netflow data";
36     longDescription = ''
37       nfdump is a set of tools for working with netflow data.
38     '';
39     homepage = "https://github.com/phaag/nfdump";
40     license = licenses.bsd3;
41     maintainers = [ maintainers.takikawa ];
42     platforms = platforms.unix;
43   };