about summary refs log tree commit diff
path: root/nixpkgs/pkgs/servers/monitoring/laurel/default.nix
diff options
context:
space:
mode:
Diffstat (limited to 'nixpkgs/pkgs/servers/monitoring/laurel/default.nix')
-rw-r--r--nixpkgs/pkgs/servers/monitoring/laurel/default.nix31
1 files changed, 31 insertions, 0 deletions
diff --git a/nixpkgs/pkgs/servers/monitoring/laurel/default.nix b/nixpkgs/pkgs/servers/monitoring/laurel/default.nix
new file mode 100644
index 000000000000..22de6d4ebb6f
--- /dev/null
+++ b/nixpkgs/pkgs/servers/monitoring/laurel/default.nix
@@ -0,0 +1,31 @@
+{ acl
+, fetchFromGitHub
+, lib
+, rustPlatform
+}:
+
+rustPlatform.buildRustPackage rec {
+  pname = "laurel";
+  version = "0.6.1";
+
+  src = fetchFromGitHub {
+    owner = "threathunters-io";
+    repo = "laurel";
+    rev = "refs/tags/v${version}";
+    hash = "sha256-dGgBcugIQ3ZPnqyTw6wRMN2PZLm6GqobeFZ1/uzMKbs=";
+  };
+
+  cargoHash = "sha256-8JNLssWTCfwrfQ/jg/rj7BUo9bCNCsM2RDwPI7cacRw=";
+
+  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; [ emilylange ];
+    platforms = platforms.linux;
+  };
+}