diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-25 00:37:53 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2018-06-26 02:16:57 +0200 |
commit | 0e66f4a12f7a9f7a0840f1e072b21291c7b66596 (patch) | |
tree | faeed11a6f7ee8f3c30436c298b0290b9dbc7f4c /gnu/packages/mail.scm | |
parent | fecbbc2820184824a0fc4a138299ee7465fd76dd (diff) | |
download | guix-0e66f4a12f7a9f7a0840f1e072b21291c7b66596.tar guix-0e66f4a12f7a9f7a0840f1e072b21291c7b66596.tar.gz |
gnu: dovecot-trees: Fix build with dovecot 2.3.
* gnu/packages/mail.scm (dovecot-trees)[source]: Add patch.
* gnu/packages/patches/dovecot-trees-support-dovecot-2.3.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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 57d589721a..aa9042edad 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1273,7 +1273,9 @@ It supports mbox/Maildir and its own dbox/mdbox formats.") (file-name (string-append name "-" version ".tar.gz")) (sha256 (base32 - "0rkk10b1bsjz979sc864vpgcdchy7yxwmyv4ik50lar1h6awdnrf")))) + "0rkk10b1bsjz979sc864vpgcdchy7yxwmyv4ik50lar1h6awdnrf")) + (patches + (search-patches "dovecot-trees-support-dovecot-2.3.patch")))) (build-system gnu-build-system) (native-inputs `(("automake" ,automake) |