zeek: 2.5.5 -> 3.0.0
This commit is contained in:
parent
50675916d1
commit
0449518afb
|
@ -1,24 +0,0 @@
|
||||||
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, perl, zlib, file, curl
|
|
||||||
, geoip, gperftools, python, swig }:
|
|
||||||
|
|
||||||
stdenv.mkDerivation rec {
|
|
||||||
name = "bro-2.5.5";
|
|
||||||
|
|
||||||
src = fetchurl {
|
|
||||||
url = "https://www.bro.org/downloads/${name}.tar.gz";
|
|
||||||
sha256 = "1kvkiq8jjsqryry9jd4vw45pbfb46jly988mq62mv4sd1fqsxwhq";
|
|
||||||
};
|
|
||||||
|
|
||||||
nativeBuildInputs = [ cmake flex bison file ];
|
|
||||||
buildInputs = [ openssl libpcap perl zlib curl geoip gperftools python swig ];
|
|
||||||
|
|
||||||
enableParallelBuilding = true;
|
|
||||||
|
|
||||||
meta = with stdenv.lib; {
|
|
||||||
description = "Powerful network analysis framework much different from a typical IDS";
|
|
||||||
homepage = https://www.bro.org/;
|
|
||||||
license = licenses.bsd3;
|
|
||||||
maintainers = with maintainers; [ pSub ];
|
|
||||||
platforms = with platforms; linux;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -0,0 +1,31 @@
|
||||||
|
{stdenv, fetchurl, cmake, flex, bison, openssl, libpcap, zlib, file, curl
|
||||||
|
, libmaxminddb, gperftools, python, swig, rocksdb }:
|
||||||
|
|
||||||
|
stdenv.mkDerivation rec {
|
||||||
|
pname = "zeek";
|
||||||
|
version = "3.0.0";
|
||||||
|
|
||||||
|
src = fetchurl {
|
||||||
|
url = "https://www.zeek.org/downloads/zeek-${version}.tar.gz";
|
||||||
|
sha256 = "16pz5fh0z1hmvhn8pxqmdm5a9d8mqrp4gxpxkaywnaqk2h598lmm";
|
||||||
|
};
|
||||||
|
|
||||||
|
nativeBuildInputs = [ cmake flex bison file ];
|
||||||
|
buildInputs = [ openssl libpcap zlib curl libmaxminddb gperftools python swig rocksdb ];
|
||||||
|
|
||||||
|
enableParallelBuilding = true;
|
||||||
|
|
||||||
|
cmakeFlags = [
|
||||||
|
"-DPY_MOD_INSTALL_DIR=${placeholder "out"}/${python.sitePackages}"
|
||||||
|
"-DENABLE_PERFTOOLS=true"
|
||||||
|
"-DINSTALL_AUX_TOOLS=true"
|
||||||
|
];
|
||||||
|
|
||||||
|
meta = with stdenv.lib; {
|
||||||
|
description = "Powerful network analysis framework much different from a typical IDS";
|
||||||
|
homepage = "https://www.zeek.org";
|
||||||
|
license = licenses.bsd3;
|
||||||
|
maintainers = with maintainers; [ pSub ];
|
||||||
|
platforms = platforms.unix;
|
||||||
|
};
|
||||||
|
}
|
|
@ -48,6 +48,7 @@ mapAliases ({
|
||||||
bar-xft = lemonbar-xft; # added 2015-01-16
|
bar-xft = lemonbar-xft; # added 2015-01-16
|
||||||
bashCompletion = bash-completion; # Added 2016-09-28
|
bashCompletion = bash-completion; # Added 2016-09-28
|
||||||
bridge_utils = bridge-utils; # added 2015-02-20
|
bridge_utils = bridge-utils; # added 2015-02-20
|
||||||
|
bro = zeek; # added 2019-09-29
|
||||||
btrfsProgs = btrfs-progs; # added 2016-01-03
|
btrfsProgs = btrfs-progs; # added 2016-01-03
|
||||||
bittorrentSync = throw "bittorrentSync has been deprecated by resilio-sync."; # added 2019-06-03
|
bittorrentSync = throw "bittorrentSync has been deprecated by resilio-sync."; # added 2019-06-03
|
||||||
bittorrentSync14 = throw "bittorrentSync14 has been deprecated by resilio-sync."; # added 2019-06-03
|
bittorrentSync14 = throw "bittorrentSync14 has been deprecated by resilio-sync."; # added 2019-06-03
|
||||||
|
|
|
@ -1198,10 +1198,6 @@ in
|
||||||
|
|
||||||
brltty = callPackage ../tools/misc/brltty { };
|
brltty = callPackage ../tools/misc/brltty { };
|
||||||
|
|
||||||
bro = callPackage ../applications/networking/ids/bro {
|
|
||||||
openssl = openssl_1_0_2;
|
|
||||||
};
|
|
||||||
|
|
||||||
brook = callPackage ../tools/networking/brook { };
|
brook = callPackage ../tools/networking/brook { };
|
||||||
|
|
||||||
broot = callPackage ../tools/misc/broot { };
|
broot = callPackage ../tools/misc/broot { };
|
||||||
|
@ -2842,6 +2838,8 @@ in
|
||||||
|
|
||||||
zabbixctl = callPackage ../tools/misc/zabbixctl { };
|
zabbixctl = callPackage ../tools/misc/zabbixctl { };
|
||||||
|
|
||||||
|
zeek = callPackage ../applications/networking/ids/zeek { };
|
||||||
|
|
||||||
zzuf = callPackage ../tools/security/zzuf { };
|
zzuf = callPackage ../tools/security/zzuf { };
|
||||||
|
|
||||||
### DEVELOPMENT / EMSCRIPTEN
|
### DEVELOPMENT / EMSCRIPTEN
|
||||||
|
|
Loading…
Reference in New Issue