mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 06:18:07 -05:00
gnu: pango: Support build for the Hurd.
* gnu/packages/gtk.scm (pango)[native-inputs]: Do not include gobject-introspection when building for the Hurd.
This commit is contained in:
parent
dd3f9a7a49
commit
825a7be431
1 changed files with 9 additions and 6 deletions
|
@ -401,12 +401,15 @@ (define-public pango
|
|||
(list bash-minimal
|
||||
zlib))
|
||||
(native-inputs
|
||||
(list `(,glib "bin") ;glib-mkenums, etc.
|
||||
gobject-introspection ;g-ir-compiler, etc.
|
||||
(append (list `(,glib "bin")) ;glib-mkenums, etc.
|
||||
(if (target-hurd?)
|
||||
'()
|
||||
(list gobject-introspection)) ;g-ir-compiler, etc.
|
||||
(list
|
||||
help2man
|
||||
perl
|
||||
pkg-config
|
||||
python-wrapper))
|
||||
python-wrapper)))
|
||||
(synopsis "Text and font handling library")
|
||||
(description "Pango is a library for laying out and rendering of text, with
|
||||
an emphasis on internationalization. Pango can be used anywhere that text
|
||||
|
|
Loading…
Reference in a new issue