blob: 4b09fba8675b99b1840a0bea97d315f904ab720a (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
|
{ 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=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"suricatax-rule-parser-0.1.0" = "sha256-qwkZFmvgfXrH0zHPq/dVfxpWkulPDT+CzPQQHfeBotg=";
};
};
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;
};
}
|