zeek: fix zeekctl, zkg module

This commit is contained in:
Mikael Fangel 2023-10-18 20:40:28 +02:00
parent bda90b8650
commit 40edae805c
No known key found for this signature in database
GPG key ID: 306DE4426F0B77C3

View file

@ -22,6 +22,7 @@
let
broker = callPackage ./broker { };
python = python3.withPackages (p: [ p.gitpython p.semantic-version ]);
in
stdenv.mkDerivation rec {
pname = "zeek";
@ -43,7 +44,7 @@ stdenv.mkDerivation rec {
cmake
file
flex
python3
python
];
buildInputs = [
@ -56,11 +57,11 @@ stdenv.mkDerivation rec {
openssl
swig
zlib
python
] ++ lib.optionals stdenv.isLinux [
libkqueue
] ++ lib.optionals stdenv.isDarwin [
gettext
python3
];
postPatch = ''