diff options
author | Ludovic Courtès <ludo@gnu.org> | 2021-12-02 13:16:13 +0100 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2021-12-02 14:59:57 +0100 |
commit | 689d141cd83f56ee82b54bdaaef5c6d57a980a91 (patch) | |
tree | 21edfd7031275c6d32081acb2287402d3e658b56 /gnu/packages | |
parent | d371abbd0f46461aa8210de8140f95aad05e9e7e (diff) | |
download | guix-689d141cd83f56ee82b54bdaaef5c6d57a980a91.tar.gz guix-689d141cd83f56ee82b54bdaaef5c6d57a980a91.zip |
gnu: Remove librsvg@2.50 from the Xfce dependency graph.
This allows us to build Xfce on non-x86_64 platforms.
* gnu/packages/gstreamer.scm (gst-plugins-good)[inputs]: Use
'librsvg-for-system' instead of 'librsvg'.
* gnu/packages/gtk.scm (guile-rsvg)[inputs]: Likewise.
* gnu/packages/xfce.scm (xfce4-xkb-plugin)[inputs]: Likewise.
Diffstat (limited to 'gnu/packages')
-rw-r--r-- | gnu/packages/gstreamer.scm | 2 | ||||
-rw-r--r-- | gnu/packages/gtk.scm | 2 | ||||
-rw-r--r-- | gnu/packages/xfce.scm | 2 |
3 files changed, 3 insertions, 3 deletions
diff --git a/gnu/packages/gstreamer.scm b/gnu/packages/gstreamer.scm index 35a992dcf7..7ea5f19a8d 100644 --- a/gnu/packages/gstreamer.scm +++ b/gnu/packages/gstreamer.scm @@ -681,7 +681,7 @@ for the GStreamer multimedia library.") ("bzip2" ,bzip2) ("cairo" ,cairo) ("flac" ,flac) - ("librsvg" ,librsvg) + ("librsvg" ,(librsvg-for-system)) ("glib" ,glib) ("glib-networking" ,glib-networking) ("glu" ,glu) diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm index e8ac0b79bb..b69fa372d9 100644 --- a/gnu/packages/gtk.scm +++ b/gnu/packages/gtk.scm @@ -1417,7 +1417,7 @@ exceptions, macros, and a dynamic programming environment.") ("libtool" ,libtool) ("texinfo" ,texinfo))) (inputs `(("guile" ,guile-3.0) - ("librsvg" ,librsvg) + ("librsvg" ,(librsvg-for-system)) ("guile-lib" ,guile-lib))) ;for (unit-test) (propagated-inputs `(("guile-cairo" ,guile-cairo))) (synopsis "Render SVG images using Cairo from Guile") diff --git a/gnu/packages/xfce.scm b/gnu/packages/xfce.scm index 06f3e3aabc..a63676a04b 100644 --- a/gnu/packages/xfce.scm +++ b/gnu/packages/xfce.scm @@ -633,7 +633,7 @@ applications, and includes a search bar to search for applications.") ("pkg-config" ,pkg-config))) (inputs `(("garcon" ,garcon) - ("librsvg" ,librsvg) + ("librsvg" ,(librsvg-for-system)) ("libwnck" ,libwnck) ("libx11" ,libx11) ("libxfce4ui" ,libxfce4ui) |