diff options
author | Maxime Devos <maximedevos@telenet.be> | 2021-07-02 12:07:03 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2024-08-31 10:42:38 +0200 |
commit | 69814c9229f3ae23f8a4484f3385edf1c369f975 (patch) | |
tree | c919162a074fa1a6d719ad51b04068d0003b0f9c /gnu/packages/wordnet.scm | |
parent | 8def9c06e7f2b640be3a4e9d03d0c38b7f8020d2 (diff) | |
download | guix-69814c9229f3ae23f8a4484f3385edf1c369f975.tar guix-69814c9229f3ae23f8a4484f3385edf1c369f975.tar.gz |
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
Diffstat (limited to 'gnu/packages/wordnet.scm')
-rw-r--r-- | gnu/packages/wordnet.scm | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/wordnet.scm b/gnu/packages/wordnet.scm index f46cc27b76..0d977e353e 100644 --- a/gnu/packages/wordnet.scm +++ b/gnu/packages/wordnet.scm @@ -23,6 +23,7 @@ #: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 @@ `("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 |