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.
This commit is contained in:
		
							parent
							
								
									8a8e491258
								
							
						
					
					
						commit
						0702bbe1f7
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
				
			
			@ -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 a new issue