diff options
author | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-25 14:27:46 -0500 |
---|---|---|
committer | Maxim Cournoyer <maxim.cournoyer@gmail.com> | 2021-11-25 14:27:46 -0500 |
commit | 0702bbe1f765bb20d290e661e41fd79baf01aa4b (patch) | |
tree | 9b4f213729ce37559c6b13df85eb40007ab1d4a1 /guix | |
parent | 8a8e491258adadcb6983a4051fa71e60c0dd7849 (diff) |
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.
Diffstat (limited to 'guix')
-rw-r--r-- | guix/profiles.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 885d7c8d40..2ee44ffe6e 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 |