gnu: guile-bash: Add dependency on the "full" Bash.

Fixes a regression introduced in
704243e0c6.

* gnu/packages/guile.scm (guile-bash)[native-inputs]: Add BASH.
This commit is contained in:
Ludovic Courtès 2017-07-19 22:59:18 +02:00
parent 47ce813f7d
commit b7158b767b
No known key found for this signature in database
GPG key ID: 090B11993D9AEBB5

View file

@ -1698,7 +1698,11 @@ (define-public guile-bash
("automake" ,automake)
("libtool" ,libtool)
;; Gettext brings 'AC_LIB_LINKFLAGS_FROM_LIBS'.
("gettext" ,gettext-minimal)))
("gettext" ,gettext-minimal)
;; Bash with loadable module support, for the test
;; suite.
("bash-full" ,bash)))
(inputs `(("guile" ,guile-2.0)
("bash:include" ,bash "include")))
(synopsis "Extend Bash using Guile")