msmtp: fix for broken queueing

PR #85846

authored by

Peter Hoeg and committed by
Robert Helgesson
920c51e4 04e308a4

+6 -1
+6 -1
pkgs/applications/networking/msmtp/default.nix
··· 1 - { stdenv, lib, fetchurl, autoreconfHook, pkgconfig, texinfo 2 , netcat-gnu, gnutls, gsasl, libidn2, Security 3 , withKeyring ? true, libsecret ? null 4 , systemd ? null }: ··· 16 sha256 = "1rarck61mz3mwg0l30vjj6j9fq6gc7gic0r1c1ppwpq2izj57jzc"; 17 }; 18 19 patches = [ 20 ./paths.patch 21 ]; 22 23 buildInputs = [ gnutls gsasl libidn2 ]
··· 1 + { stdenv, lib, fetchurl, fetchpatch, autoreconfHook, pkgconfig, texinfo 2 , netcat-gnu, gnutls, gsasl, libidn2, Security 3 , withKeyring ? true, libsecret ? null 4 , systemd ? null }: ··· 16 sha256 = "1rarck61mz3mwg0l30vjj6j9fq6gc7gic0r1c1ppwpq2izj57jzc"; 17 }; 18 19 + # the 2nd patch should go when 1.8.9 is released 20 patches = [ 21 ./paths.patch 22 + (fetchpatch { 23 + url = "https://github.com/marlam/msmtp-mirror/commit/c78f24347ec996c7a3830b48403bf3736afca071.patch"; 24 + sha256 = "0d4sc2f5838jriv65wahpgvwckkzqhdk3hs660fyg80si2i0l1bx"; 25 + }) 26 ]; 27 28 buildInputs = [ gnutls gsasl libidn2 ]