guix_mirror_bot pushed a commit to branch gnome-team
in repository guix.
commit 89c79ca57ad38fe47bd09f5d77004204c01bfb87
Author: Noé Lopez <[email protected]>
AuthorDate: Wed May 20 20:39:50 2026 +0200
gnu: librsvg: Install loader in right directory.
Before, it would be installed outside of the “loaders” directory, due to an
oversight in the substitution. We can use the new
%gdk-pixbuf-loaders-directory variable instead.
* gnu/packages/gnome.scm (librsvg)[arguments]<#:phases>: Fix path of
gdk-pixbuf loader.
Change-Id: I1618608d466ad7fdb344b1dcce9a69ff7fcad7af
---
gnu/packages/gnome.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index b3270fcff3..8192173fd7 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -3620,7 +3620,7 @@ for dealing with different structured file formats.")
;; gdk-pixbuf's prefix. Work around that.
(("pixbuf_dep.get_variable.*'gdk_pixbuf_moduledir'.*),")
(format #f "get_option('prefix') / '~a',"
- #$(dirname %gdk-pixbuf-loaders-cache-file)))
+ #$%gdk-pixbuf-loaders-directory))
(("pixbuf_dep.get_variable.*'gdk_pixbuf_query_loaders'.*),")
(format #f "'~a'," (which "gdk-pixbuf-query-loaders")))
(("pixbuf_dep.get_variable.*'gdk_pixbuf_cache_file'.*)")