depot/third_party/nixpkgs/pkgs/by-name/zi/zircolite/package.nix

65 lines
1.4 KiB
Nix

{
lib,
fetchFromGitHub,
makeWrapper,
python3,
}:
python3.pkgs.buildPythonApplication rec {
pname = "zircolite";
version = "2.30.1";
format = "other";
src = fetchFromGitHub {
owner = "wagga40";
repo = "Zircolite";
tag = version;
hash = "sha256-9stQa0EMNA/qEN+bU7qBOdcwUR1vMGk70Br6wxRK8cs=";
};
__darwinAllowLocalNetworking = true;
build-system = [
makeWrapper
];
dependencies =
with python3.pkgs;
[
aiohttp
colorama
elastic-transport
elasticsearch
evtx
jinja2
lxml
orjson
requests
tqdm
urllib3
xxhash
]
++ elasticsearch.optional-dependencies.async;
installPhase = ''
runHook preInstall
mkdir -p $out/bin $out/share $out/share/zircolite
cp -R . $out/share/zircolite
makeWrapper ${python3.interpreter} $out/bin/zircolite \
--set PYTHONPATH "$PYTHONPATH:$out/bin/zircolite.py" \
--add-flags "$out/share/zircolite/zircolite.py"
runHook postInstall
'';
meta = with lib; {
description = "SIGMA-based detection tool for EVTX, Auditd, Sysmon and other logs";
mainProgram = "zircolite";
homepage = "https://github.com/wagga40/Zircolite";
changelog = "https://github.com/wagga40/Zircolite/releases/tag/${version}";
license = licenses.gpl3Only;
maintainers = with maintainers; [ fab ];
};
}