From cc086729383dd4020c0c23b2dcb08e695bbb7a7a Mon Sep 17 00:00:00 2001 From: Thomas Butter Date: Sat, 9 May 2026 13:26:05 +0000 Subject: [PATCH] evtx: 0.10.0 -> 0.11.2 --- pkgs/by-name/ev/evtx/package.nix | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/pkgs/by-name/ev/evtx/package.nix b/pkgs/by-name/ev/evtx/package.nix index 2ba74c7b3462..d5c40c00a27e 100644 --- a/pkgs/by-name/ev/evtx/package.nix +++ b/pkgs/by-name/ev/evtx/package.nix @@ -6,22 +6,29 @@ rustPlatform.buildRustPackage (finalAttrs: { pname = "evtx"; - version = "0.10.0"; + version = "0.11.2"; src = fetchFromGitHub { owner = "omerbenamram"; repo = "evtx"; tag = "v${finalAttrs.version}"; - hash = "sha256-v57lo1ggElGJD618ojuADspmhlZAMgmzD5DxEdtp2Ak="; + hash = "sha256-LVGw/u5xq+m96zSMPbQDpMnfMHq7FyQnzkmGMUMVgwM="; }; - cargoHash = "sha256-qjlN10YS79S0JV2MPFB9SxPDUQnoVdqVf8kYpLt4w9g="; + cargoHash = "sha256-RnuWlfmzOZzOMfeKo8tv9I4elLQgpn9IbVa0EpYGnI0="; postPatch = '' # CLI tests will fail in the sandbox rm tests/test_cli_interactive.rs ''; + checkFlags = [ + "--skip=wevt_templates_research::wevt_dll_adtschema" + "--skip=wevt_templates_research::wevt_dll_lsasrv" + "--skip=wevt_templates_research::wevt_dll_services" + "--skip=wevt_templates_research::wevt_dll_wevtsvc" + ]; + meta = { description = "Parser for the Windows XML Event Log (EVTX) format"; homepage = "https://github.com/omerbenamram/evtx";