mirror of
https://codeberg.org/guix/guix.git
synced 2025-10-02 02:15:12 +00: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 @@ 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
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue