diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-24 23:57:29 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2021-07-24 23:59:07 +0200 |
commit | c7b51b799dcbbee53d6eb8b615f5fd9e29b68856 (patch) | |
tree | 7172d13ba748da9a152ca2cbc102380756a7dd91 /gnu/packages/mail.scm | |
parent | e463e09dc2b5ef6c19ae9dbb11f1caeb8336bbf7 (diff) | |
download | guix-c7b51b799dcbbee53d6eb8b615f5fd9e29b68856.tar.gz |
gnu: esmtp: Fix build with libesmtp >= 1.1.0.
* gnu/packages/mail.scm (esmtp)[source]: Add patch. * gnu/packages/patches/esmtp-add-lesmtp.patch: New file. * gnu/local.mk (dist_patch_DATA): Add it.
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index f0f1540cc9..e400b8cb6b 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -2399,7 +2399,8 @@ be expected from a simple client.") (sha256 (base32 "1ay282rrl92h0m0m8z5zzjnwiiagi7c78aq2qvhia5mw7prwfyw2")) - (file-name (string-append name "-" version "-checkout")))) + (file-name (string-append name "-" version "-checkout")) + (patches (search-patches "esmtp-add-lesmtp.patch")))) (arguments `(#:phases (modify-phases %standard-phases (replace 'bootstrap |