gnu: pango: Support build for the Hurd.
* gnu/packages/gtk.scm (pango)[native-inputs]: Do not include gobject-introspection when building for the Hurd.
parent
dd3f9a7a49
commit
825a7be431
|
@ -401,12 +401,15 @@ applications.")
|
||||||
(list bash-minimal
|
(list bash-minimal
|
||||||
zlib))
|
zlib))
|
||||||
(native-inputs
|
(native-inputs
|
||||||
(list `(,glib "bin") ;glib-mkenums, etc.
|
(append (list `(,glib "bin")) ;glib-mkenums, etc.
|
||||||
gobject-introspection ;g-ir-compiler, etc.
|
(if (target-hurd?)
|
||||||
|
'()
|
||||||
|
(list gobject-introspection)) ;g-ir-compiler, etc.
|
||||||
|
(list
|
||||||
help2man
|
help2man
|
||||||
perl
|
perl
|
||||||
pkg-config
|
pkg-config
|
||||||
python-wrapper))
|
python-wrapper)))
|
||||||
(synopsis "Text and font handling library")
|
(synopsis "Text and font handling library")
|
||||||
(description "Pango is a library for laying out and rendering of text, with
|
(description "Pango is a library for laying out and rendering of text, with
|
||||||
an emphasis on internationalization. Pango can be used anywhere that text
|
an emphasis on internationalization. Pango can be used anywhere that text
|
||||||
|
|
Reference in New Issue