Merge pull request #313896 from secshellnet/pkg-evebox

evebox: init at 0.17.2
This commit is contained in:
Peder Bergebakken Sundt 2024-06-10 12:46:16 +02:00 committed by GitHub
commit 4c736c40be
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 2680 additions and 0 deletions

View File

@ -6700,6 +6700,16 @@
githubId = 9959940;
name = "Andreas Fehn";
};
felbinger = {
name = "Nico Felbinger";
email = "nico@felbinger.eu";
matrix = "@nico:felbinger.eu";
github = "felbinger";
githubId = 26925347;
keys = [{
fingerprint = "0797 D238 9769 CA1E 57B7 2ED9 2BA7 8116 87C9 0DE4";
}];
};
felipeqq2 = {
name = "Felipe Silva";
email = "nixpkgs@felipeqq2.rocks";

2636
pkgs/by-name/ev/evebox/Cargo.lock generated Normal file

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,34 @@
{ lib
, stdenv
, rustPlatform
, fetchFromGitHub
}:
rustPlatform.buildRustPackage rec {
pname = "evebox";
version = "0.17.2";
src = fetchFromGitHub {
owner = "jasonish";
repo = "evebox";
rev = version;
hash = "sha256-djL5cdudJNPAWLMQPS2Dkcc9H/gouOuu8evcBDdY9wA=";
};
cargoLock = {
lockFile = ./Cargo.lock;
outputHashes = {
"libsqlite3-sys-0.25.2" = "sha256-+c7ong6ca4WkEHl7ynCNn3WW68jF3pSYbllRsaNFGLc=";
"suricatax-rule-parser-0.1.0" = "sha256-upWgOKSAuj0pYGTeYKANzwutoF/m4AQ7MkzGYXmPbEo=";
};
};
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.isDarwin;
};
}