mirror of
https://https.git.savannah.gnu.org/git/guix.git/
synced 2025-07-14 19:10:49 +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:
parent
8507b8a1a0
commit
90c78943dc
1 changed files with 3 additions and 3 deletions
|
@ -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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue