mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05:00
gnu: translate-shell: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/dictionaries.scm (translate-shell): Fix indentation. [inputs]: Add 'bash-minimal'. [native-inputs]: Remove labels. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I3fcca53b2645f5eb15be7eb9b91217525a2e4e3a
This commit is contained in:
parent
58ba26e049
commit
b7ff2afdff
1 changed files with 14 additions and 13 deletions
|
@ -38,6 +38,7 @@ (define-module (gnu packages dictionaries)
|
|||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages base)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages curl)
|
||||
#:use-module (gnu packages emacs)
|
||||
#:use-module (gnu packages flex)
|
||||
|
@ -288,10 +289,10 @@ (define-public translate-shell
|
|||
(guix build utils))
|
||||
#:test-target "test"))
|
||||
(inputs
|
||||
(list curl fribidi rlwrap))
|
||||
(list bash-minimal curl fribidi rlwrap))
|
||||
(native-inputs
|
||||
`(("emacs" ,emacs-minimal)
|
||||
("util-linux" ,util-linux))) ; hexdump, for the test
|
||||
(list emacs-minimal
|
||||
util-linux)) ; hexdump, for the test
|
||||
(home-page "https://www.soimort.org/translate-shell/")
|
||||
(synopsis "Translations from the command line")
|
||||
(description
|
||||
|
|
Loading…
Reference in a new issue