mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: debug: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation. * gnu/packages/debug.scm (c-reduce)[inputs]: Add 'bash-minimal'. (scanmem)[inputs]: Likewise. Signed-off-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I6cae82e90a994384aa3ddd737dd885444a0f5cad
This commit is contained in:
parent
ae9867f85c
commit
2abc77996e
1 changed files with 3 additions and 1 deletions
|
@ -143,6 +143,7 @@ (define-public c-reduce
|
|||
(native-inputs (list flex))
|
||||
(inputs
|
||||
`(("astyle" ,astyle)
|
||||
("bash" ,bash-minimal) ; for wrap-program
|
||||
("llvm" ,llvm-9)
|
||||
("clang" ,clang-9)
|
||||
("indent" ,indent)
|
||||
|
@ -692,7 +693,8 @@ (define-public scanmem
|
|||
automake
|
||||
autoconf))
|
||||
(inputs
|
||||
(list readline))
|
||||
(list bash-minimal
|
||||
readline))
|
||||
(propagated-inputs
|
||||
(list python-pygobject))
|
||||
(home-page "https://github.com/scanmem/scanmem")
|
||||
|
|
Loading…
Reference in a new issue