gnu: json-glib: Fix cross-compiling.
* gnu/packages/gnome.scm (json-glib)[native-inputs]: Only add more inputs when not cross-compiling. Change-Id: I987f382f02d9f7b79b6e281d1f6f6824c1b2dfd3master
parent
3de361d9c9
commit
728d471d73
|
@ -11,7 +11,7 @@
|
|||
;;; Copyright © 2015, 2016, 2017, 2018, 2019, 2020, 2023 Ricardo Wurmus <rekado@elephly.net>
|
||||
;;; Copyright © 2015, 2016, 2017, 2018, 2021 Mark H Weaver <mhw@netris.org>
|
||||
;;; Copyright © 2015 David Thompson <davet@gnu.org>
|
||||
;;; Copyright © 2015-2023 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2015-2024 Efraim Flashner <efraim@flashner.co.il>
|
||||
;;; Copyright © 2016, 2017, 2018 Rene Saavedra <pacoon@protonmail.com>
|
||||
;;; Copyright © 2016 Jochem Raat <jchmrt@riseup.net>
|
||||
;;; Copyright © 2016, 2017, 2019 Kei Kebreau <kkebreau@posteo.net>
|
||||
|
@ -4781,12 +4781,15 @@ GLib and GObject, and integrates JSON with GLib data types.")
|
|||
(string-append #$output:doc
|
||||
"/share/gtk-doc"))))))))))
|
||||
(native-inputs
|
||||
(modify-inputs (package-native-inputs json-glib-minimal)
|
||||
(prepend docbook-xml-4.3
|
||||
docbook-xsl
|
||||
gobject-introspection
|
||||
gtk-doc
|
||||
libxslt)))))
|
||||
(if (%current-target-system)
|
||||
;; No docs, no additional inputs.
|
||||
(package-native-inputs json-glib-minimal)
|
||||
(modify-inputs (package-native-inputs json-glib-minimal)
|
||||
(prepend docbook-xml-4.3
|
||||
docbook-xsl
|
||||
gobject-introspection
|
||||
gtk-doc
|
||||
libxslt))))))
|
||||
|
||||
(define-public libxklavier
|
||||
(package
|
||||
|
|
Reference in New Issue