mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-01-22 12:53:54 +00:00
5026f74653
https://github.com/threathunters-io/laurel/releases/tag/v0.5.6 diff: https://github.com/threathunters-io/laurel/compare/v0.5.5...v0.5.6
32 lines
815 B
Nix
32 lines
815 B
Nix
{ acl
|
|
, fetchFromGitHub
|
|
, lib
|
|
, rustPlatform
|
|
}:
|
|
|
|
rustPlatform.buildRustPackage rec {
|
|
pname = "laurel";
|
|
version = "0.5.6";
|
|
|
|
src = fetchFromGitHub {
|
|
owner = "threathunters-io";
|
|
repo = pname;
|
|
rev = "refs/tags/v${version}";
|
|
hash = "sha256-IGmpNSHGlQGJn4cvcXXWbIOWqsXizzp1azfT41B4rm4=";
|
|
};
|
|
|
|
cargoHash = "sha256-jm1AWybDnpc1E4SWieQcsVwn8mxkJ5damMsXqg54LI8=";
|
|
|
|
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;
|
|
};
|
|
}
|