mirror of
https://git.savannah.gnu.org/git/guix.git
synced 2026-04-06 21:20:33 +02:00
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 <maxim.cournoyer@gmail.com> Modified-by: Maxim Cournoyer <maxim.cournoyer@gmail.com> Change-Id: I8deea0be09969478ef91415669e62ceab4129884
This commit is contained in:
committed by
Ludovic Courtès
parent
8507b8a1a0
commit
90c78943dc
@@ -23,6 +23,7 @@
|
|||||||
#:use-module (guix download)
|
#:use-module (guix download)
|
||||||
#:use-module (guix build-system gnu)
|
#:use-module (guix build-system gnu)
|
||||||
#:use-module ((guix licenses) #:prefix license:)
|
#:use-module ((guix licenses) #:prefix license:)
|
||||||
|
#:use-module (gnu packages bash)
|
||||||
#:use-module (gnu packages java))
|
#:use-module (gnu packages java))
|
||||||
|
|
||||||
(define-public kawa
|
(define-public kawa
|
||||||
@@ -45,10 +46,9 @@
|
|||||||
(lambda* (#:key inputs outputs #:allow-other-keys)
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
||||||
(let ((out (assoc-ref outputs "out")))
|
(let ((out (assoc-ref outputs "out")))
|
||||||
(wrap-program (string-append out "/share/kawa/bin/kawa")
|
(wrap-program (string-append out "/share/kawa/bin/kawa")
|
||||||
`("JAVA_HOME" ":" = (,(assoc-ref inputs "icedtea"))))
|
`("JAVA_HOME" ":" = (,(assoc-ref inputs "icedtea"))))))))))
|
||||||
#t))))))
|
|
||||||
(inputs
|
(inputs
|
||||||
(list `(,icedtea-8 "jdk")))
|
(list bash-minimal `(,icedtea-8 "jdk")))
|
||||||
(home-page "https://www.gnu.org/software/kawa/")
|
(home-page "https://www.gnu.org/software/kawa/")
|
||||||
(synopsis "Java framework and implementation of Scheme, Elisp, and more")
|
(synopsis "Java framework and implementation of Scheme, Elisp, and more")
|
||||||
(description
|
(description
|
||||||
|
|||||||
Reference in New Issue
Block a user