2024-05-23 07:52:37 +02:00
|
|
|
{
|
|
|
|
lib,
|
|
|
|
stdenv,
|
|
|
|
rustPlatform,
|
|
|
|
fetchFromGitHub,
|
|
|
|
}:
|
|
|
|
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
|
|
pname = "evebox";
|
2024-08-06 20:33:21 +02:00
|
|
|
version = "0.18.2";
|
2024-05-23 07:52:37 +02:00
|
|
|
|
|
|
|
src = fetchFromGitHub {
|
|
|
|
owner = "jasonish";
|
|
|
|
repo = "evebox";
|
2025-04-08 02:51:45 -04:00
|
|
|
rev = version;
|
2024-08-06 20:33:21 +02:00
|
|
|
hash = "sha256-vakCBDyL/Su55tkn/SJ5ShZcYC8l+p2acpve/fTN0uI=";
|
2024-05-23 07:52:37 +02:00
|
|
|
};
|
|
|
|
|
2025-03-08 12:42:03 +01:00
|
|
|
cargoHash = "sha256-b3PQQlSRt1ysnJIkBXdG1KRUdEJ8h1WLzbmZXx9VjqU=";
|
2024-05-23 07:52:37 +02:00
|
|
|
|
|
|
|
meta = {
|
|
|
|
description = "Web Based Event Viewer (GUI) for Suricata EVE Events in Elastic Search";
|
|
|
|
homepage = "https://evebox.org/";
|
|
|
|
changelog = "https://github.com/jasonish/evebox/releases/tag/${src.rev}";
|
|
|
|
license = lib.licenses.mit;
|
|
|
|
maintainers = with lib.maintainers; [ felbinger ];
|
|
|
|
broken = stdenv.hostPlatform.isDarwin;
|
|
|
|
};
|
|
|
|
}
|