diff options
author | Ludovic Courtès <ludo@gnu.org> | 2015-10-31 15:11:58 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2015-10-31 15:11:58 +0100 |
commit | d9b9454c9865c148afc8498837e077581e43037d (patch) | |
tree | 528563f334c36e0c98981f5a41d23dbb948f6fff /gnu/packages/mail.scm | |
parent | 375c610844c7776470edb88eafb18c48c6c90187 (diff) | |
parent | 3c3e69728c10bcdffa0c597b2b80a482361aea14 (diff) | |
download | guix-d9b9454c9865c148afc8498837e077581e43037d.tar guix-d9b9454c9865c148afc8498837e077581e43037d.tar.gz |
Merge branch 'dbus-update'
Diffstat (limited to 'gnu/packages/mail.scm')
-rw-r--r-- | gnu/packages/mail.scm | 12 |
1 files changed, 11 insertions, 1 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 699b8802b7..1a0a42d267 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -304,6 +304,15 @@ can read the same mailbox from multiple computers. It supports IMAP as REMOTE repository and Maildir/IMAP as LOCAL repository.") (license gpl2+))) +(define %mu-gtester-patch + ;; Ensure tests have unique names, to placate GLib 2.6's gtester. + (origin + (method url-fetch) + (uri "https://github.com/djcb/mu/commit/b44039ed.patch") + (sha256 + (base32 + "165hryqqhx3wah8a4f5jaq465azx1pm9r4jid7880pys9gd88qlv")))) + (define-public mu (package (name "mu") @@ -315,7 +324,8 @@ repository and Maildir/IMAP as LOCAL repository.") (file-name (string-append "mu-" version ".tar.gz")) (sha256 (base32 - "0wj33pma8xgjvn2akk7khzbycwn4c9sshxvzdph9dnpy7gyqxj51")))) + "0wj33pma8xgjvn2akk7khzbycwn4c9sshxvzdph9dnpy7gyqxj51")) + (patches (list %mu-gtester-patch)))) (build-system gnu-build-system) (native-inputs `(("pkg-config" ,pkg-config) |