Merge pull request #156780 from fabaff/bump-zeek

zeek: 4.1.1 -> 4.2.0

Changed files
+23 -6
pkgs
applications
networking
ids
+23 -6
pkgs/applications/networking/ids/zeek/default.nix
···
stdenv.mkDerivation rec {
pname = "zeek";
-
version = "4.1.1";
src = fetchurl {
url = "https://download.zeek.org/zeek-${version}.tar.gz";
-
sha256 = "0wq3kjc3zc5ikzwix7k7gr92v75rg6283kx5fzvc3lcdkaczq2lc";
};
-
nativeBuildInputs = [ cmake flex bison file ];
-
buildInputs = [ openssl libpcap zlib curl libmaxminddb gperftools python3 swig ncurses ]
-
++ lib.optionals stdenv.isDarwin [ gettext ];
outputs = [ "out" "lib" "py" ];
···
'';
meta = with lib; {
-
description = "Powerful network analysis framework much different from a typical IDS";
homepage = "https://www.zeek.org";
changelog = "https://github.com/zeek/zeek/blob/v${version}/CHANGES";
license = licenses.bsd3;
···
stdenv.mkDerivation rec {
pname = "zeek";
+
version = "4.2.0";
src = fetchurl {
url = "https://download.zeek.org/zeek-${version}.tar.gz";
+
sha256 = "sha256-jZoCjKn+x61KnkinY+KWBSOEz0AupM03FXe/8YPCdFE=";
};
+
nativeBuildInputs = [
+
bison
+
cmake
+
file
+
flex
+
];
+
+
buildInputs = [
+
curl
+
gperftools
+
libmaxminddb
+
libpcap
+
ncurses
+
openssl
+
python3
+
swig
+
zlib
+
] ++ lib.optionals stdenv.isDarwin [
+
gettext
+
];
outputs = [ "out" "lib" "py" ];
···
'';
meta = with lib; {
+
description = "Network analysis framework much different from a typical IDS";
homepage = "https://www.zeek.org";
changelog = "https://github.com/zeek/zeek/blob/v${version}/CHANGES";
license = licenses.bsd3;