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

evtx: 0.8.0 -> 0.8.1
This commit is contained in:
Fabian Affolter 2023-02-23 09:15:27 +01:00 committed by GitHub
commit 105749e008
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,16 +6,16 @@
rustPlatform.buildRustPackage rec {
pname = "evtx";
version = "0.8.0";
version = "0.8.1";
src = fetchFromGitHub {
owner = "omerbenamram";
repo = pname;
rev = "v${version}";
hash = "sha256-iexSMcD4XHEYeVWWQXQ7VLZwtUQeEkvrLxMXuxYuxts=";
rev = "refs/tags/v${version}";
hash = "sha256-aa04Ia11+Ae1amc3JAtYdSWf+f/fenTt0Bny/AauaHo=";
};
cargoSha256 = "sha256-6dDv4+yEKxFjbguMfQxPm18PgZ2DC9IVbmpw2N94mEo=";
cargoHash = "sha256-4pQP+cvKfOvRgWRFa4+/dEpBq+gfcOuEENC5aP4Cp7U=";
postPatch = ''
# CLI tests will fail in the sandbox
@ -25,6 +25,7 @@ rustPlatform.buildRustPackage rec {
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 ];
};