gnu: wordnet: Add 'bash' input for 'wrap-program'.

It is required for cross-compilation.

* gnu/packages/wordnet.scm (wordnet)[inputs]: Add 'bash-minimal'.

Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
Change-Id: Ied0ae8ae3bc87a62e4f236a117aeab612b2e7341
This commit is contained in:
Maxime Devos 2021-07-02 12:07:03 +02:00 committed by Ludovic Courtès
parent 8def9c06e7
commit 69814c9229
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -23,6 +23,7 @@ (define-module (gnu packages wordnet)
#:use-module (guix licenses)
#:use-module (guix download)
#:use-module (gnu packages)
#:use-module (gnu packages bash)
#:use-module (gnu packages gcc)
#:use-module (gnu packages tcl))
@ -81,12 +82,11 @@ (define-public wordnet
`("PATH" ":" prefix
(,(string-append out
"/bin"))))))
'("wishwn" "wnb"))
#t))))))
'("wishwn" "wnb"))))))))
(outputs '("out"
"tk")) ; for the Tcl/Tk GUI
(inputs (list tk tcl))
(inputs (list bash-minimal tk tcl))
(home-page "https://wordnet.princeton.edu/")
(synopsis "Lexical database for the English language")
(description