mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-11-07 07:26:13 -05: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 @@ (define-module (gnu packages kawa)
|
|||
#: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 @@ (define-public kawa
|
|||
(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
|
||||
|
|
Loading…
Reference in a new issue