mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-24 21:38:07 -05:00
gnu: brltty: Build with java only on some architectures.
* gnu/packages/accessibility.scm (brltty)[native-inputs]: Only build with icedtea on x86_64-linux, i686-linux and aarch64-linux. Change-Id: I95e2cfa17c1f484677ad8f26e3a865eba83362dd
This commit is contained in:
parent
055d70f5d8
commit
3694221290
1 changed files with 16 additions and 11 deletions
|
@ -152,17 +152,22 @@ (define-public brltty
|
|||
(assoc-ref python:%standard-phases
|
||||
'add-install-to-pythonpath)))))
|
||||
(native-inputs
|
||||
(list clisp
|
||||
python-cython
|
||||
doxygen
|
||||
gettext-minimal
|
||||
`(,icedtea "jdk")
|
||||
;; ("linuxdoc" ,linuxdoc-tools)
|
||||
ocaml
|
||||
ocaml-findlib
|
||||
pkg-config
|
||||
python-wrapper
|
||||
tcl))
|
||||
(append
|
||||
(list clisp
|
||||
python-cython
|
||||
doxygen
|
||||
gettext-minimal)
|
||||
;; icedtea doesn't build reliably on all architectures.
|
||||
(if (or (target-x86?)
|
||||
(target-aarch64?))
|
||||
(list `(,icedtea "jdk"))
|
||||
'())
|
||||
(list ;; ("linuxdoc" ,linuxdoc-tools)
|
||||
ocaml
|
||||
ocaml-findlib
|
||||
pkg-config
|
||||
python-wrapper
|
||||
tcl)))
|
||||
(inputs
|
||||
(list alsa-lib
|
||||
at-spi2-core
|
||||
|
|
Loading…
Reference in a new issue