Maximilian Bosch 3 years ago
parent 23308044ef
commit 5e1c94effd
No known key found for this signature in database
GPG Key ID: 091DBF4D1FC46B8E
  1. 14
      pkgs/applications/networking/mailreaders/neomutt/default.nix

@ -1,17 +1,18 @@
{ lib, stdenv, fetchFromGitHub, gettext, makeWrapper, tcl, which
, ncurses, perl , cyrus_sasl, gss, gpgme, libkrb5, libidn, libxml2, notmuch, openssl
, lmdb, libxslt, docbook_xsl, docbook_xml_dtd_42, w3m, mailcap, sqlite, zlib
, fetchpatch
}:
stdenv.mkDerivation rec {
version = "20211022";
version = "20211029";
pname = "neomutt";
src = fetchFromGitHub {
owner = "neomutt";
repo = "neomutt";
rev = version;
sha256 = "sha256-gPMbl+g9tU7YmT3uJoJozCdDBb/4eFyVyvHdREK1Ss0=";
sha256 = "sha256-haPDZorAfKuIEMiBCXJRMALAYnurQyjmCSOnj9IsoKk=";
};
buildInputs = [
@ -24,6 +25,15 @@ stdenv.mkDerivation rec {
docbook_xsl docbook_xml_dtd_42 gettext libxml2 libxslt.bin makeWrapper tcl which zlib w3m
];
patches = [
# Remove on next update, see
# https://github.com/NixOS/nixpkgs/pull/143641#issuecomment-954991746 for context.
(fetchpatch {
url = "https://github.com/neomutt/neomutt/commit/4242a31313e0b600693215c01047bbda8a6dd25a.patch";
sha256 = "sha256-fcuNeBkPjqln5QA9VFcfXCQD/VrUoSEMSxQ//Xj+yxY=";
})
];
enableParallelBuilding = true;
postPatch = ''

Loading…
Cancel
Save