~ruther/guix-local

2abc77996eff8963e6decaf75cae7775b4044ed4 — Maxime Devos 4 years ago ae9867f
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
1 files changed, 3 insertions(+), 1 deletions(-)

M gnu/packages/debug.scm
M gnu/packages/debug.scm => gnu/packages/debug.scm +3 -1
@@ 143,6 143,7 @@ program to exhibit a bug.")
    (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 @@ input.  Zzuf's behaviour is deterministic, making it easy to reproduce bugs.")
           automake
           autoconf))
    (inputs
     (list readline))
     (list bash-minimal
           readline))
    (propagated-inputs
     (list python-pygobject))
    (home-page "https://github.com/scanmem/scanmem")