diff --git a/pkgs/applications/networking/msmtp/default.nix b/pkgs/applications/networking/msmtp/default.nix index d2291cc1e922..885a2f826880 100644 --- a/pkgs/applications/networking/msmtp/default.nix +++ b/pkgs/applications/networking/msmtp/default.nix @@ -21,6 +21,8 @@ , systemd , withScripts ? true , gitUpdater +, binlore +, msmtp }: let @@ -139,6 +141,12 @@ if withScripts then paths = [ binaries scripts ]; passthru = { inherit binaries scripts src; + # msmtpq forwards most of its arguments to msmtp [1]. + # + # [1]: + binlore.out = binlore.synthesize msmtp '' + wrapper bin/msmtpq bin/msmtp + ''; updateScript = gitUpdater { rev-prefix = "msmtp-"; }; }; } else binaries