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.master
parent
8a8e491258
commit
0702bbe1f7
|
@ -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
|
||||
|
|
Reference in New Issue