mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
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:
parent
8def9c06e7
commit
69814c9229
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue