nixpkgs mirror (for testing)
github.com/NixOS/nixpkgs
nix
1{
2 lib,
3 stdenv,
4 rustPlatform,
5 fetchFromGitHub,
6}:
7
8rustPlatform.buildRustPackage rec {
9 pname = "evebox";
10 version = "0.18.2";
11
12 src = fetchFromGitHub {
13 owner = "jasonish";
14 repo = "evebox";
15 rev = version;
16 hash = "sha256-vakCBDyL/Su55tkn/SJ5ShZcYC8l+p2acpve/fTN0uI=";
17 };
18
19 cargoHash = "sha256-b3PQQlSRt1ysnJIkBXdG1KRUdEJ8h1WLzbmZXx9VjqU=";
20
21 meta = {
22 description = "Web Based Event Viewer (GUI) for Suricata EVE Events in Elastic Search";
23 homepage = "https://evebox.org/";
24 changelog = "https://github.com/jasonish/evebox/releases/tag/${src.rev}";
25 license = lib.licenses.mit;
26 maintainers = with lib.maintainers; [ felbinger ];
27 broken = stdenv.hostPlatform.isDarwin;
28 };
29}