summaryrefslogtreecommitdiffstats
path: root/pkgs/applications/networking/mailreaders
diff options
context:
space:
mode:
authorMaximilian Bosch <maximilian@mbosch.me>2023-12-25 14:07:45 +0100
committerMaximilian Bosch <maximilian@mbosch.me>2023-12-25 14:07:45 +0100
commit11f58647d68261dfa90de2da61a7858abac7a9cc (patch)
tree02a00425eee2842b661eb41f7b4b0a26b9b3d90b /pkgs/applications/networking/mailreaders
parent7ea14cb4c33be896a6bd8ca17cfbd1636aa4e2b5 (diff)
neomutt: 20231103 -> 20231221
ChangeLog: https://github.com/neomutt/neomutt/releases/tag/20231221 * Dropped `fix-open-very-large-mailbox.patch`: doesn't apply anymore, but I cannot reproduce the behavior anymore (i.e. crashes when opening mailboxes with >40k mails). Should be tested by somebody else just to be sure though. * `fix-attr-color-copy.patch` is part of this release.
Diffstat (limited to 'pkgs/applications/networking/mailreaders')
-rw-r--r--pkgs/applications/networking/mailreaders/neomutt/default.nix17
-rw-r--r--pkgs/applications/networking/mailreaders/neomutt/fix-open-very-large-mailbox.patch51
2 files changed, 3 insertions, 65 deletions
diff --git a/pkgs/applications/networking/mailreaders/neomutt/default.nix b/pkgs/applications/networking/mailreaders/neomutt/default.nix
index 2e30ae70d23b..6616a87ba6ef 100644
--- a/pkgs/applications/networking/mailreaders/neomutt/default.nix
+++ b/pkgs/applications/networking/mailreaders/neomutt/default.nix
@@ -1,4 +1,4 @@
-{ lib, stdenv, fetchFromGitHub, fetchpatch, gettext, makeWrapper, tcl, which
+{ lib, stdenv, fetchFromGitHub, gettext, makeWrapper, tcl, which
, ncurses, perl , cyrus_sasl, gss, gpgme, libkrb5, libidn2, libxml2, notmuch, openssl
, lua, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42, w3m, mailcap, sqlite, zlib, lndir
, pkg-config, zstd, enableZstd ? true, enableMixmaster ? false, enableLua ? false
@@ -6,27 +6,16 @@
}:
stdenv.mkDerivation rec {
- version = "20231103";
+ version = "20231221";
pname = "neomutt";
src = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = version;
- sha256 = "sha256-9/XYgQjOdIwDpoJz5kNmiRBdoSod9l7Yl0u4e20KDPw=";
+ sha256 = "sha256-IXly2N/DD2+XBXVIXJw1sE/0eJwbUaONDNRMi7n1T44=";
};
- patches = [
- # https://github.com/neomutt/neomutt/issues/3773#issuecomment-1493295144
- ./fix-open-very-large-mailbox.patch
- # https://github.com/neomutt/neomutt/issues/4128
- (fetchpatch {
- name = "fix-attr-color-copy.patch";
- url = "https://github.com/neomutt/neomutt/commit/24f8644c28e602206a63fae53c4eb3d32426ce0c.patch";
- hash = "sha256-8qcW9hb6yxEZICRYgl6ZhPQDrI6nZN9NH+40GhTgR0o=";
- })
- ];
-
buildInputs = [
cyrus_sasl gss gpgme libkrb5 libidn2 ncurses
notmuch openssl perl lmdb
diff --git a/pkgs/applications/networking/mailreaders/neomutt/fix-open-very-large-mailbox.patch b/pkgs/applications/networking/mailreaders/neomutt/fix-open-very-large-mailbox.patch
deleted file mode 100644
index 11a4464a57ca..000000000000
--- a/pkgs/applications/networking/mailreaders/neomutt/fix-open-very-large-mailbox.patch
+++ /dev/null
@@ -1,51 +0,0 @@
-diff --git a/mutt_mailbox.c b/mutt_mailbox.c
-index 5581a8187..22f0ca21a 100644
---- a/mutt_mailbox.c
-+++ b/mutt_mailbox.c
-@@ -160,6 +160,9 @@ int mutt_mailbox_check(struct Mailbox *m_cur, CheckStatsFlags flags)
- st_ctx.st_dev = 0;
- st_ctx.st_ino = 0;
-
-+ if (kInMboxOpen)
-+ return 0;
-+
- #ifdef USE_IMAP
- if (flags & MUTT_MAILBOX_CHECK_FORCE)
- mutt_update_num_postponed();
-diff --git a/mx.c b/mx.c
-index 4bf5af141..a4e9f83f5 100644
---- a/mx.c
-+++ b/mx.c
-@@ -295,6 +295,8 @@ bool mx_mbox_ac_link(struct Mailbox *m)
- return true;
- }
-
-+int kInMboxOpen = 0;
-+
- /**
- * mx_mbox_open - Open a mailbox and parse it
- * @param m Mailbox to open
-@@ -386,8 +388,10 @@ bool mx_mbox_open(struct Mailbox *m, OpenMailboxFlags flags)
- m->msg_tagged = 0;
- m->vcount = 0;
-
-+ kInMboxOpen = 1;
- enum MxOpenReturns rc = m->mx_ops->mbox_open(m);
- m->opened++;
-+ kInMboxOpen = 0;
-
- if ((rc == MX_OPEN_OK) || (rc == MX_OPEN_ABORT))
- {
-diff --git a/mx.h b/mx.h
-index 741431570..43e40bf32 100644
---- a/mx.h
-+++ b/mx.h
-@@ -38,6 +38,8 @@ extern const struct MxOps *mx_ops[];
-
- extern struct EnumDef MboxTypeDef;
-
-+extern int kInMboxOpen;
-+
- typedef uint8_t MsgOpenFlags; ///< Flags for mx_msg_open_new(), e.g. #MUTT_ADD_FROM
- #define MUTT_MSG_NO_FLAGS 0 ///< No flags are set
- #define MUTT_ADD_FROM (1 << 0) ///< add a From_ line