lol
fork

Configure Feed

Select the types of activity you want to include in your feed.

nfdump: init at 1.6.15

+30
+28
pkgs/tools/networking/nfdump/default.nix
··· 1 + { stdenv, fetchFromGitHub, bzip2, yacc, flex }: 2 + 3 + let version = "1.6.15"; in 4 + 5 + stdenv.mkDerivation rec { 6 + name = "nfdump-${version}"; 7 + 8 + src = fetchFromGitHub { 9 + owner = "phaag"; 10 + repo = "nfdump"; 11 + rev = "v${version}"; 12 + sha256 = "07grsfkfjy05yfqfcmgp5xpavpck9ps6q7x8x8j79fym5d8gwak5"; 13 + }; 14 + 15 + nativeBuildInputs = [yacc flex]; 16 + buildInputs = [bzip2]; 17 + 18 + meta = with stdenv.lib; { 19 + description = "Tools for working with netflow data"; 20 + longDescription = '' 21 + nfdump is a set of tools for working with netflow data. 22 + ''; 23 + homepage = https://github.com/phaag/nfdump; 24 + license = licenses.bsd3; 25 + maintainers = [ maintainers.takikawa ]; 26 + platforms = platforms.unix; 27 + }; 28 + }
+2
pkgs/top-level/all-packages.nix
··· 942 942 943 943 mpdris2 = callPackage ../tools/audio/mpdris2 { }; 944 944 945 + nfdump = callPackage ../tools/networking/nfdump { }; 946 + 945 947 playerctl = callPackage ../tools/audio/playerctl { }; 946 948 947 949 syscall_limiter = callPackage ../os-specific/linux/syscall_limiter {};