guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

37/58: gnu: pango: Support build for the Hurd.


From: guix-commits
Subject: 37/58: gnu: pango: Support build for the Hurd.
Date: Wed, 19 Jul 2023 03:00:49 -0400 (EDT)

janneke pushed a commit to branch hurd-team
in repository guix.

commit 8ee06a0488358c7b3444f7abb6973f277f93caec
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Tue Jun 13 13:52:24 2023 +0200

    gnu: pango: Support build for the Hurd.
    
    * gnu/packages/gtk.scm (pango)[native-inputs]: Do not include
    gobject-introspection when building for the Hurd.
---
 gnu/packages/gtk.scm | 15 +++++++++------
 1 file changed, 9 insertions(+), 6 deletions(-)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 645084c501..e52940d0fc 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -394,12 +394,15 @@ applications.")
      (list bash-minimal
            zlib))
     (native-inputs
-     (list `(,glib "bin")               ;glib-mkenums, etc.
-           gobject-introspection        ;g-ir-compiler, etc.
-           help2man
-           perl
-           pkg-config
-           python-wrapper))
+     (append (list `(,glib "bin"))      ;glib-mkenums, etc.
+             (if (target-hurd?)
+                 '()
+                 (list gobject-introspection)) ;g-ir-compiler, etc.
+             (list
+              help2man
+              perl
+              pkg-config
+              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



reply via email to

[Prev in Thread] Current Thread [Next in Thread]