[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
08/19: gnu: librsvg: Build without gobject-introspection for the Hurd.
From: |
guix-commits |
Subject: |
08/19: gnu: librsvg: Build without gobject-introspection for the Hurd. |
Date: |
Sat, 2 Sep 2023 11:48:56 -0400 (EDT) |
janneke pushed a commit to branch hurd-team
in repository guix.
commit d104c78c1d3c489550e58b678323e710b8970e90
Author: Janneke Nieuwenhuizen <janneke@gnu.org>
AuthorDate: Sat Sep 2 17:22:40 2023 +0200
gnu: librsvg: Build without gobject-introspection for the Hurd.
* gnu/packages/gnome.scm (librsvg)[native-inputs]: Omit
gobject-introspection
when building for the Hurd.
---
gnu/packages/gnome.scm | 11 ++++++++++-
1 file changed, 10 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 4a2e867476..7e0cabc399 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3636,7 +3636,16 @@ for dealing with different structured file formats.")
#:test-target "check")))
(replace 'install
(assoc-ref gnu:%standard-phases 'install)))))
- (native-inputs (list `(,glib "bin") gobject-introspection pkg-config vala))
+ (native-inputs
+ (append
+ (list `(,glib "bin"))
+ (if (target-hurd? (or (%current-system)
+ (%current-target-system)))
+ '()
+ (list gobject-introspection))
+ (list
+ pkg-config
+ vala)))
(inputs (list freetype harfbuzz libxml2 pango))
(propagated-inputs (list cairo gdk-pixbuf glib))
(synopsis "SVG rendering library")
- branch hurd-team created (now 17f1e06a5f), guix-commits, 2023/09/02
- 04/19: squash! self: Build directories in chunks of max 25 files at a time. -- typo, guix-commits, 2023/09/02
- 06/19: maint: Support `guix shell' in Guix's git archive with manifest.scm., guix-commits, 2023/09/02
- 07/19: gnu: gdk-pixbuf: Build without gobject-introspection for the Hurd., guix-commits, 2023/09/02
- 09/19: hurd: Support system init in /libexec/runsystem., guix-commits, 2023/09/02
- 11/19: system: hurd: Add procps to %base-packages/hurd., guix-commits, 2023/09/02
- 13/19: DRAFT hurd: Support second boot., guix-commits, 2023/09/02
- 03/19: gnu: guix: Update to 1.4.0-12.329069a2fb., guix-commits, 2023/09/02
- 08/19: gnu: librsvg: Build without gobject-introspection for the Hurd.,
guix-commits <=
- 10/19: hurd-boot: Support system init: Create essential device nodes., guix-commits, 2023/09/02
- 01/19: self: Build directories in chunks of max 25 files at a time., guix-commits, 2023/09/02
- 19/19: Revert "DRAFT daemon: Support chroot builds on GNU/Hurd.", guix-commits, 2023/09/02
- 05/19: squash! self: Build directories in chunks of max 25 files at a time. -- remove gc, guix-commits, 2023/09/02
- 02/19: gnu: guix: Update to 1.4.0-11.45de303d8b., guix-commits, 2023/09/02
- 14/19: DRAFT hurd-boot: Support second boot., guix-commits, 2023/09/02
- 16/19: gnu: Add libc-locales-for-target and glibc-locales/hurd., guix-commits, 2023/09/02
- 18/19: DRAFT daemon: Support chroot builds on GNU/Hurd., guix-commits, 2023/09/02
- 15/19: DRAFT system: examples: Add devel-hurd.tmpl., guix-commits, 2023/09/02
- 17/19: locale: Set %default-locale-definitions to glibc/hurd on the Hurd., guix-commits, 2023/09/02