diff options
-rw-r--r-- | guix/profiles.scm | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/guix/profiles.scm b/guix/profiles.scm index 2ee44ffe6e..1d354ecb78 100644 --- a/guix/profiles.scm +++ b/guix/profiles.scm @@ -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 |