Merge pull request #301537 from r-ryantm/auto-update/evtx

evtx: 0.8.1 -> 0.8.2
This commit is contained in:
Weijia Wang 2024-04-05 17:14:19 +02:00 committed by GitHub
commit 1f83711458
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1,20 +1,21 @@
{ lib
, rustPlatform
, fetchFromGitHub
{
lib,
fetchFromGitHub,
rustPlatform,
}:
rustPlatform.buildRustPackage rec {
pname = "evtx";
version = "0.8.1";
version = "0.8.2";
src = fetchFromGitHub {
owner = "omerbenamram";
repo = pname;
repo = "evtx";
rev = "refs/tags/v${version}";
hash = "sha256-aa04Ia11+Ae1amc3JAtYdSWf+f/fenTt0Bny/AauaHo=";
hash = "sha256-uuoHDIZ76BfRSb1XXHDwsSQ3ium22FPv1fjrB35liXw=";
};
cargoHash = "sha256-4pQP+cvKfOvRgWRFa4+/dEpBq+gfcOuEENC5aP4Cp7U=";
cargoHash = "sha256-OmwfI86Rj0Ph5cXpGzAycEw+A4liki7+gc1iokDBwhU=";
postPatch = ''
# CLI tests will fail in the sandbox
@ -23,10 +24,13 @@ rustPlatform.buildRustPackage rec {
meta = with lib; {
description = "Parser for the Windows XML Event Log (EVTX) format";
mainProgram = "evtx_dump";
homepage = "https://github.com/omerbenamram/evtx";
changelog = "https://github.com/omerbenamram/evtx/blob/v${version}/CHANGELOG.md";
license = with licenses; [ asl20 /* or */ mit ];
license = with licenses; [
asl20 # or
mit
];
maintainers = with maintainers; [ fab ];
mainProgram = "evtx_dump";
};
}