msmtp: fix for broken queueing

PR #85846
This commit is contained in:
Peter Hoeg 2020-04-23 16:52:48 +08:00 committed by Robert Helgesson
parent 04e308a496
commit 920c51e408
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89

View File

@ -1,4 +1,4 @@
{ stdenv, lib, fetchurl, autoreconfHook, pkgconfig, texinfo { stdenv, lib, fetchurl, fetchpatch, autoreconfHook, pkgconfig, texinfo
, netcat-gnu, gnutls, gsasl, libidn2, Security , netcat-gnu, gnutls, gsasl, libidn2, Security
, withKeyring ? true, libsecret ? null , withKeyring ? true, libsecret ? null
, systemd ? null }: , systemd ? null }:
@ -16,8 +16,13 @@ in stdenv.mkDerivation rec {
sha256 = "1rarck61mz3mwg0l30vjj6j9fq6gc7gic0r1c1ppwpq2izj57jzc"; sha256 = "1rarck61mz3mwg0l30vjj6j9fq6gc7gic0r1c1ppwpq2izj57jzc";
}; };
# the 2nd patch should go when 1.8.9 is released
patches = [ patches = [
./paths.patch ./paths.patch
(fetchpatch {
url = "https://github.com/marlam/msmtp-mirror/commit/c78f24347ec996c7a3830b48403bf3736afca071.patch";
sha256 = "0d4sc2f5838jriv65wahpgvwckkzqhdk3hs660fyg80si2i0l1bx";
})
]; ];
buildInputs = [ gnutls gsasl libidn2 ] buildInputs = [ gnutls gsasl libidn2 ]