guix-commits
[Top][All Lists]
Advanced

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

139/201: gnu: gdk-pixbuf: Add a search path for the loaders cache file.


From: guix-commits
Subject: 139/201: gnu: gdk-pixbuf: Add a search path for the loaders cache file.
Date: Mon, 1 Nov 2021 23:19:01 -0400 (EDT)

apteryx pushed a commit to branch core-updates-frozen-batched-changes
in repository guix.

commit cb6beeae066a9528d42527362f2ca8c36d2d3817
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Sat Oct 2 22:35:05 2021 -0400

    gnu: gdk-pixbuf: Add a search path for the loaders cache file.
    
    Fixes <https://issues.guix.gnu.org/50957>.
    
    The previous commit added a profile hook to compute a gdk-pixbuf loaders 
cache
    file.  This change enables gdk-pixbuf to make use of it.
    
    * gnu/packages/gtk.scm (gdk-pixbuf)[native-search-paths]: Add a search path
    specification to set the GDK_PIXBUF_MODULE_FILE environment variable.
---
 gnu/packages/gtk.scm | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/gnu/packages/gtk.scm b/gnu/packages/gtk.scm
index 8c3d554..005d2b8 100644
--- a/gnu/packages/gtk.scm
+++ b/gnu/packages/gtk.scm
@@ -697,6 +697,14 @@ highlighting and other features typical of a source code 
editor.")
        ("perl" ,perl)
        ("pkg-config" ,pkg-config)
        ("xsltproc" ,libxslt)))
+    (native-search-paths
+     ;; This file is produced by the gdk-pixbuf-loaders-cache-file
+     ;; profile hook.
+     (list (search-path-specification
+            (variable "GDK_PIXBUF_MODULE_FILE")
+            (files (list %gdk-pixbuf-loaders-cache-file))
+            (separator #f)              ;single valued
+            (file-type 'regular))))
     (synopsis "Image loading library")
     (description "GdkPixbuf is a library that loads image data in various
 formats and stores it as linear buffers in memory.  The buffers can then be



reply via email to

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