profiles: Also handle package objects in GDK-PIXBUF-LOADERS-CACHE-FILE.
* guix/profiles.scm (gdk-pixbuf-loaders-cache-file): Handle both a string or a package object for GDK-PIXBUF, as these are the two types that can be returned by MANIFEST-LOOKUP-PACKAGE. Suggested-by: Ludovic Courtès <ludo@gnu.org>master
parent
138498feec
commit
71b309169d
|
@ -1189,7 +1189,9 @@ loaders discovered in MANIFEST."
|
|||
(mlet* %store-monad
|
||||
((gdk-pixbuf (manifest-lookup-package manifest "gdk-pixbuf"))
|
||||
(librsvg (manifest-lookup-package manifest "librsvg"))
|
||||
(gdk-pixbuf-bin -> (string-append gdk-pixbuf "/bin")))
|
||||
(gdk-pixbuf-bin -> (if (string? gdk-pixbuf)
|
||||
(string-append gdk-pixbuf "/bin")
|
||||
(file-append gdk-pixbuf "/bin"))))
|
||||
|
||||
(define build
|
||||
(with-imported-modules (source-module-closure
|
||||
|
|
Reference in New Issue