[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
05/17: gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd
From: |
guix-commits |
Subject: |
05/17: gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd. |
Date: |
Fri, 15 Sep 2023 16:15:17 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit a6ad545374bf9ae576108310d15af58306524e8d
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Sep 2 10:25:50 2023 +0200
gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd.
* gnu/packages/gtk.scm (gdk-pixbuf)[native-inputs]: Omit
gobject-introspection
when building for the Hurd.
---
gnu/packages/gtk.scm | 25 ++++++++++++++-----------
1 file changed, 14 insertions(+), 11 deletions(-)
diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 0d6df1f583..22471cb90a 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -728,17 +728,20 @@ highlighting and other features typical of a source code
editor.")
(list bash-minimal) ;for glib-or-gtk-wrap
'()))
(native-inputs
- (list gettext-minimal
- `(,glib "bin") ;glib-mkenums, etc.
- gobject-introspection ;g-ir-compiler, etc.
- perl
- pkg-config
-
- ;; For the documentation.
- docbook-xml-4.3
- docbook-xsl
- libxml2 ;for XML_CATALOG_FILES
- libxslt)) ;for xsltproc
+ (append
+ (list gettext-minimal
+ `(,glib "bin")) ;glib-mkenums, etc.
+ (if (target-hurd? (or (%current-system)
+ (%current-target-system)))
+ '()
+ (list gobject-introspection)) ;g-ir-compiler, etc.
+ (list perl
+ pkg-config
+ ;; For the documentation.
+ docbook-xml-4.3
+ docbook-xsl
+ libxml2 ;for XML_CATALOG_FILES
+ libxslt))) ;for xsltproc
(native-search-paths
;; This file is produced by the gdk-pixbuf-loaders-cache-file
;; profile hook.
- 09/17: system: hurd: Add procps to %base-packages/hurd., (continued)
- 09/17: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/09/15
- 14/17: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/09/15
- 17/17: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/15
- 08/17: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/15
- 12/17: DRAFT hurd-boot: Support second boot., guix-commits, 2023/09/15
- 04/17: maint: Support `guix shell' in Guix's git archive with manifest.scm., guix-commits, 2023/09/15
- 16/17: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/15
- 03/17: gnu: guix: Update to 1.4.0-12.4ec9f1ad38., guix-commits, 2023/09/15
- 01/17: self: Build directories in chunks of max 25 files at a time., guix-commits, 2023/09/15
- 02/17: gnu: guix: Update to 1.4.0-11.51b13b744e., guix-commits, 2023/09/15
- 05/17: gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd.,
guix-commits <=
- 06/17: gnu: librsvg: Build without gobject-introspection for the Hurd., guix-commits, 2023/09/15
- 10/17: system: hurd: Add swap-services to hurd-default-essential-services., guix-commits, 2023/09/15
- 11/17: DRAFT hurd: Support second boot., guix-commits, 2023/09/15
- 07/17: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/15
- 15/17: locale: Set %default-locale-definitions to glibc/hurd on the Hurd., guix-commits, 2023/09/15
- 13/17: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/15