30 lines
755 B
Nix
30 lines
755 B
Nix
{
|
|
lib,
|
|
stdenv,
|
|
rustPlatform,
|
|
fetchFromGitHub,
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "evebox";
|
|
version = "0.18.2";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "jasonish";
|
|
repo = "evebox";
|
|
rev = version;
|
|
hash = "sha256-vakCBDyL/Su55tkn/SJ5ShZcYC8l+p2acpve/fTN0uI=";
|
|
};
|
|
|
|
useFetchCargoVendor = true;
|
|
cargoHash = "sha256-b3PQQlSRt1ysnJIkBXdG1KRUdEJ8h1WLzbmZXx9VjqU=";
|
|
|
|
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;
|
|
};
|
|
}
|