Merge pull request #261883 from MikaelFangel/fix-zeekctl
zeek: fix zeekctl, zkg module
This commit is contained in:
commit
85e9ce0b58
1 changed files with 3 additions and 2 deletions
|
@ -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 = ''
|
||||
|
|
Loading…
Reference in a new issue