gnu: notmuch: Simplify inputs.

* gnu/packages/mail.scm (notmuch)[native-inputs]: Remove labels.
This commit is contained in:
Nicolas Goaziou 2022-01-11 10:34:16 +01:00
parent 509ef2125d
commit a7478b1ca0
No known key found for this signature in database
GPG key ID: DA00B4F048E92F2D

View file

@ -1370,20 +1370,19 @@ (define-public notmuch
(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/")