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:
Maxime Devos 2021-07-02 12:06:29 +02:00 committed by Ludovic Courtès
parent ae9867f85c
commit 2abc77996e
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -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")