guix-commits
[Top][All Lists]
Advanced

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

branch core-updates-frozen updated: profiles: Fix the gdk-pixbuf-loaders


From: guix-commits
Subject: branch core-updates-frozen updated: profiles: Fix the gdk-pixbuf-loaders-cache-file hook.
Date: Thu, 25 Nov 2021 14:31:41 -0500

This is an automated email from the git hooks/post-receive script.

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

The following commit(s) were added to refs/heads/core-updates-frozen by this 
push:
     new 0702bbe  profiles: Fix the gdk-pixbuf-loaders-cache-file hook.
0702bbe is described below

commit 0702bbe1f765bb20d290e661e41fd79baf01aa4b
Author: Maxim Cournoyer <maxim.cournoyer@gmail.com>
AuthorDate: Thu Nov 25 14:27:46 2021 -0500

    profiles: Fix the gdk-pixbuf-loaders-cache-file hook.
    
    'guix install' would otherwise fail with a wrong type argument whet 
attempting
    to call the hook.
    
    * guix/profiles.scm (gdk-pixbuf-loaders-cache-file) <file-append>: Replace
    with...
    <string-append>: ... this, as gdk-pixbuf has already been expanded to a 
string
    at this point.
---
 guix/profiles.scm | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/guix/profiles.scm b/guix/profiles.scm
index 885d7c8..2ee44ff 100644
--- a/guix/profiles.scm
+++ b/guix/profiles.scm
@@ -1189,7 +1189,7 @@ loaders discovered in MANIFEST."
   (mlet* %store-monad
       ((gdk-pixbuf (manifest-lookup-package manifest "gdk-pixbuf"))
        (librsvg (manifest-lookup-package manifest "librsvg"))
-       (gdk-pixbuf-bin -> (file-append gdk-pixbuf "/bin")))
+       (gdk-pixbuf-bin -> (string-append gdk-pixbuf "/bin")))
 
     (define build
       (with-imported-modules (source-module-closure



reply via email to

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