From 20af491de169fb017368b7c0180a195f296b419a Mon Sep 17 00:00:00 2001 From: Michael Adler Date: Fri, 20 Feb 2026 16:20:31 +0100 Subject: [PATCH] aerc: wrap show-ics-details.py to fix missing deps The show-ics-details.py filter requires the Python package 'vobject', which is correctly specified in 'pythonPath'. However, the filter was not wrapped, causing it to fail at runtime due to the missing dependency. --- pkgs/by-name/ae/aerc/package.nix | 1 + 1 file changed, 1 insertion(+) diff --git a/pkgs/by-name/ae/aerc/package.nix b/pkgs/by-name/ae/aerc/package.nix index 401830d85a39..98bbe2ff207c 100644 --- a/pkgs/by-name/ae/aerc/package.nix +++ b/pkgs/by-name/ae/aerc/package.nix @@ -61,6 +61,7 @@ buildGoModule (finalAttrs: { runHook preInstall make $makeFlags GOFLAGS="$GOFLAGS${lib.optionalString withNotmuch " -tags=notmuch"}" install + wrapPythonProgramsIn "$out/libexec/" "''${pythonPath[*]}" runHook postInstall '';