apteryx pushed a commit to branch core-updates
in repository guix.
commit e62eb9e6c374aed3f3c71bc2b9ca2e1f0ae248c2
Author: Maxime Devos <[email protected]>
AuthorDate: Fri Jul 2 12:07:33 2021 +0200
gnu: kawa: Add 'bash' input for 'wrap-program'.
It is required for cross-compilation.
* gnu/packages/kawa.scm
(kawa)[inputs]: Add 'bash-minimal'.
Signed-off-by: Maxim Cournoyer <[email protected]>
Modified-by: Maxim Cournoyer <[email protected]>
Change-Id: I8deea0be09969478ef91415669e62ceab4129884
---
gnu/packages/kawa.scm | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/gnu/packages/kawa.scm b/gnu/packages/kawa.scm
index 49a3ca6e16..e644965f9b 100644
--- a/gnu/packages/kawa.scm
+++ b/gnu/packages/kawa.scm
@@ -23,6 +23,7 @@
#:use-module (guix download)
#:use-module (guix build-system gnu)
#:use-module ((guix licenses) #:prefix license:)
+ #:use-module (gnu packages bash)
#:use-module (gnu packages java))
(define-public kawa
@@ -45,10 +46,9 @@
(lambda* (#:key inputs outputs #:allow-other-keys)
(let ((out (assoc-ref outputs "out")))
(wrap-program (string-append out "/share/kawa/bin/kawa")
- `("JAVA_HOME" ":" = (,(assoc-ref inputs "icedtea"))))
- #t))))))
+ `("JAVA_HOME" ":" = (,(assoc-ref inputs "icedtea"))))))))))
(inputs
- (list `(,icedtea-8 "jdk")))
+ (list bash-minimal `(,icedtea-8 "jdk")))
(home-page "https://www.gnu.org/software/kawa/")
(synopsis "Java framework and implementation of Scheme, Elisp, and more")
(description