37 lines
858 B
Nix
37 lines
858 B
Nix
|
{
|
||
|
lib,
|
||
|
fetchFromGitHub,
|
||
|
rustPlatform,
|
||
|
}:
|
||
|
|
||
|
rustPlatform.buildRustPackage rec {
|
||
|
pname = "evtx";
|
||
|
version = "0.8.4";
|
||
|
|
||
|
src = fetchFromGitHub {
|
||
|
owner = "omerbenamram";
|
||
|
repo = "evtx";
|
||
|
rev = "refs/tags/v${version}";
|
||
|
hash = "sha256-ljEuFsLOwydLbx1DprJdBTL3cjFkhmuwr34da8LzG88=";
|
||
|
};
|
||
|
|
||
|
cargoHash = "sha256-PZTB53DbUlyACS2wWmgVUQVz6EXb02GUogO3ClY678I=";
|
||
|
|
||
|
postPatch = ''
|
||
|
# CLI tests will fail in the sandbox
|
||
|
rm tests/test_cli_interactive.rs
|
||
|
'';
|
||
|
|
||
|
meta = with lib; {
|
||
|
description = "Parser for the Windows XML Event Log (EVTX) format";
|
||
|
homepage = "https://github.com/omerbenamram/evtx";
|
||
|
changelog = "https://github.com/omerbenamram/evtx/blob/v${version}/CHANGELOG.md";
|
||
|
license = with licenses; [
|
||
|
asl20 # or
|
||
|
mit
|
||
|
];
|
||
|
maintainers = with maintainers; [ fab ];
|
||
|
mainProgram = "evtx_dump";
|
||
|
};
|
||
|
}
|