diff options
author | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-06-05 02:00:01 +0200 |
---|---|---|
committer | Tobias Geerinckx-Rice <me@tobias.gr> | 2022-06-05 02:00:01 +0200 |
commit | 4cb22c07d2141b118572704d28c35290c297696b (patch) | |
tree | 4156163999f8540facdc432e80017af5a63e6839 | |
parent | 9ae55f84825a8bb1896f32a4a07ece0b0823fc28 (diff) | |
download | guix-4cb22c07d2141b118572704d28c35290c297696b.tar.gz |
gnu: python-notmuch: Remove trailing #t from phase.
* gnu/packages/mail.scm (python-notmuch): [arguments]: Don't explicitly return #t from phase.
-rw-r--r-- | gnu/packages/mail.scm | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm index 8b58d5029f..c9fa62a1f3 100644 --- a/gnu/packages/mail.scm +++ b/gnu/packages/mail.scm @@ -1474,8 +1474,7 @@ useful for email address completion.") (let ((notmuch (assoc-ref inputs "notmuch"))) (substitute* "notmuch/globals.py" (("libnotmuch\\.so\\.") - (string-append notmuch "/lib/libnotmuch.so."))) - #t)))))) + (string-append notmuch "/lib/libnotmuch.so."))))))))) (home-page (package-home-page notmuch)) (synopsis "Python bindings of the Notmuch mail indexing library") (description |