mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: byobu: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/screen.scm (byobu)[inputs]: Add 'bash-minimal'. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com>
This commit is contained in:
parent
fe83f96235
commit
b98f564540
1 changed files with 3 additions and 1 deletions
|
@ -33,6 +33,7 @@ (define-module (gnu packages screen)
|
|||
#:use-module (guix build-system gnu)
|
||||
#:use-module (gnu packages)
|
||||
#:use-module (gnu packages autotools)
|
||||
#:use-module (gnu packages bash)
|
||||
#:use-module (gnu packages hurd)
|
||||
#:use-module (gnu packages ncurses)
|
||||
#:use-module (gnu packages perl)
|
||||
|
@ -119,7 +120,8 @@ (define-public byobu
|
|||
(patches (search-patches "byobu-writable-status.patch"))))
|
||||
(build-system gnu-build-system)
|
||||
(inputs
|
||||
`(("python" ,python-wrapper) ; for config and session GUIs
|
||||
`(("bash" ,bash-minimal) ; for wrap-program
|
||||
("python" ,python-wrapper) ; for config and session GUIs
|
||||
("python-newt" ,newt "python")))
|
||||
(arguments
|
||||
`(#:phases
|
||||
|
|
Loading…
Reference in a new issue