nfdump: init at 1.6.15
This commit is contained in:
parent
e2f837f743
commit
6b0736b01d
28
pkgs/tools/networking/nfdump/default.nix
Normal file
28
pkgs/tools/networking/nfdump/default.nix
Normal file
@ -0,0 +1,28 @@
|
||||
{ stdenv, fetchFromGitHub, bzip2, yacc, flex }:
|
||||
|
||||
let version = "1.6.15"; in
|
||||
|
||||
stdenv.mkDerivation rec {
|
||||
name = "nfdump-${version}";
|
||||
|
||||
src = fetchFromGitHub {
|
||||
owner = "phaag";
|
||||
repo = "nfdump";
|
||||
rev = "v${version}";
|
||||
sha256 = "07grsfkfjy05yfqfcmgp5xpavpck9ps6q7x8x8j79fym5d8gwak5";
|
||||
};
|
||||
|
||||
nativeBuildInputs = [yacc flex];
|
||||
buildInputs = [bzip2];
|
||||
|
||||
meta = with stdenv.lib; {
|
||||
description = "Tools for working with netflow data";
|
||||
longDescription = ''
|
||||
nfdump is a set of tools for working with netflow data.
|
||||
'';
|
||||
homepage = https://github.com/phaag/nfdump;
|
||||
license = licenses.bsd3;
|
||||
maintainers = [ maintainers.takikawa ];
|
||||
platforms = platforms.unix;
|
||||
};
|
||||
}
|
@ -942,6 +942,8 @@ with pkgs;
|
||||
|
||||
mpdris2 = callPackage ../tools/audio/mpdris2 { };
|
||||
|
||||
nfdump = callPackage ../tools/networking/nfdump { };
|
||||
|
||||
playerctl = callPackage ../tools/audio/playerctl { };
|
||||
|
||||
syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {};
|
||||
|
Loading…
Reference in New Issue
Block a user