guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

02/02: gnu: notmuch: Simplify inputs.


From: guix-commits
Subject: 02/02: gnu: notmuch: Simplify inputs.
Date: Tue, 11 Jan 2022 04:35:26 -0500 (EST)

ngz pushed a commit to branch master
in repository guix.

commit a7478b1ca0f4fbd38d84d9dcd809a6a4089865cc
Author: Nicolas Goaziou <mail@nicolasgoaziou.fr>
AuthorDate: Tue Jan 11 10:34:16 2022 +0100

    gnu: notmuch: Simplify inputs.
    
    * gnu/packages/mail.scm (notmuch)[native-inputs]: Remove labels.
---
 gnu/packages/mail.scm | 27 +++++++++++++--------------
 1 file changed, 13 insertions(+), 14 deletions(-)

diff --git a/gnu/packages/mail.scm b/gnu/packages/mail.scm
index 766037693c..fc41034494 100644
--- a/gnu/packages/mail.scm
+++ b/gnu/packages/mail.scm
@@ -1370,20 +1370,19 @@ invoking @command{notifymuch} from the post-new hook.")
                       (substitute* (find-files "test" "\\.sh$")
                         (("/bin/sh") (which "sh"))))))))
     (native-inputs
-     `(("bash-completion" ,bash-completion)
-       ("pkg-config" ,pkg-config)
-       ("python" ,python)
-       ("python-docutils" ,python-docutils)
-       ("sphinx" ,python-sphinx)
-       ("texinfo" ,texinfo)
-
-       ;; The following are required for tests only.
-       ("emacs" ,emacs-no-x)    ; -minimal lacks libxml, needed for some tests
-       ("which" ,which)
-       ("dtach" ,dtach)
-       ("gnupg" ,gnupg)
-       ("man" ,man-db)
-       ("perl" ,perl)))
+     (list bash-completion
+           pkg-config
+           python
+           python-docutils
+           python-sphinx
+           texinfo
+           ;; The following are required for tests only.
+           emacs-no-x ; -minimal lacks libxml, needed for some tests
+           which
+           dtach
+           gnupg
+           man-db
+           perl))
     (inputs
      (list glib gmime talloc xapian zlib))
     (home-page "https://notmuchmail.org/";)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]