Merge pull request #261883 from MikaelFangel/fix-zeekctl

zeek: fix zeekctl, zkg module
This commit is contained in:
Mario Rodas 2023-10-20 05:50:17 -05:00 committed by GitHub
commit 85e9ce0b58
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

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 = ''