laurel: init at 0.5.2

This commit is contained in:
IndeedNotJames 2023-05-03 12:07:29 +02:00
parent fd531dee22
commit d9389772d2
No known key found for this signature in database
GPG key ID: 0AD773CE46FD0F87
2 changed files with 33 additions and 0 deletions

View file

@ -0,0 +1,31 @@
{ acl
, fetchFromGitHub
, lib
, rustPlatform
}:
rustPlatform.buildRustPackage rec {
pname = "laurel";
version = "0.5.2";
src = fetchFromGitHub {
owner = "threathunters-io";
repo = pname;
rev = "v${version}";
hash = "sha256-MT3Zcuztb2QUwWR3HFViJQtygI0oIUE3TlMu+vWzbMI=";
};
cargoHash = "sha256-hX2nSBgXctAHGqvP/ZmMjGJf7C/wPJ/gL+gV7uI8gco=";
nativeBuildInputs = [ rustPlatform.bindgenHook ];
buildInputs = [ acl ];
meta = with lib; {
description = "Transform Linux Audit logs for SIEM usage";
homepage = "https://github.com/threathunters-io/laurel";
changelog = "https://github.com/threathunters-io/laurel/releases/tag/v${version}";
license = licenses.gpl3Plus;
maintainers = with maintainers; [ indeednotjames ];
platforms = platforms.linux;
};
}

View file

@ -20942,6 +20942,8 @@ with pkgs;
LASzip = callPackage ../development/libraries/LASzip { };
LASzip2 = callPackage ../development/libraries/LASzip/LASzip2.nix { };
laurel = callPackage ../servers/monitoring/laurel/default.nix { };
lcm = callPackage ../development/libraries/lcm { };
lcms = lcms2;