Nix-build Source Repo

nix build Zeek with remote binary cache server (speed up building process)

nix run bin/Zeekctl and binary build (similar to docker run )

Deploying zeek ids with bash shell to created dynamic path

using Nixos module systemd to deploy zeek (nixops devops feature)

Hydra’s Nix Zeek jobs CI/CD(Multi-arch support)

passing Zeek’s plugins list

also, you can modify the bool value of plugin name to disbale or enable plugin build under zeek-nix/overlay. then run nix-build rebuild it!

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
  zeek = prev.callPackage ./nix {
    KafkaPlugin = true;
    PostgresqlPlugin = true;
    Http2Plugin = true;
    Ikev2Plugin = true;
    CommunityIdPlugin = true;
    ZipPlugin = true;
    PdfPlugin = true;
    SpicyPlugin = true;
    }

Nix to Spicy