Skip to content

Commit

Permalink
Merge pull request #225615 from IndeedNotJames/laurel
Browse files Browse the repository at this point in the history
  • Loading branch information
SuperSandro2000 authored May 4, 2023
2 parents 83ab179 + d938977 commit 07c1afc
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 0 deletions.
31 changes: 31 additions & 0 deletions pkgs/servers/monitoring/laurel/default.nix
Original file line number Diff line number Diff line change
@@ -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;
};
}
2 changes: 2 additions & 0 deletions pkgs/top-level/all-packages.nix
Original file line number Diff line number Diff line change
Expand Up @@ -21128,6 +21128,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;
Expand Down

0 comments on commit 07c1afc

Please sign in to comment.