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: I95e2cfa17c1f484677ad8f26e3a865eba83362ddmaster
parent
055d70f5d8
commit
3694221290
|
@ -152,17 +152,22 @@ terminals.")
|
||||||
(assoc-ref python:%standard-phases
|
(assoc-ref python:%standard-phases
|
||||||
'add-install-to-pythonpath)))))
|
'add-install-to-pythonpath)))))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
|
(append
|
||||||
(list clisp
|
(list clisp
|
||||||
python-cython
|
python-cython
|
||||||
doxygen
|
doxygen
|
||||||
gettext-minimal
|
gettext-minimal)
|
||||||
`(,icedtea "jdk")
|
;; icedtea doesn't build reliably on all architectures.
|
||||||
;; ("linuxdoc" ,linuxdoc-tools)
|
(if (or (target-x86?)
|
||||||
|
(target-aarch64?))
|
||||||
|
(list `(,icedtea "jdk"))
|
||||||
|
'())
|
||||||
|
(list ;; ("linuxdoc" ,linuxdoc-tools)
|
||||||
ocaml
|
ocaml
|
||||||
ocaml-findlib
|
ocaml-findlib
|
||||||
pkg-config
|
pkg-config
|
||||||
python-wrapper
|
python-wrapper
|
||||||
tcl))
|
tcl)))
|
||||||
(inputs
|
(inputs
|
||||||
(list alsa-lib
|
(list alsa-lib
|
||||||
at-spi2-core
|
at-spi2-core
|
||||||
|
|
Reference in New Issue