[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/01: gnu: gnome-shell: Add gdk-pixbuf+svg to inputs.
From: |
guix-commits |
Subject: |
01/01: gnu: gnome-shell: Add gdk-pixbuf+svg to inputs. |
Date: |
Thu, 25 Apr 2019 09:30:22 -0400 (EDT) |
rekado pushed a commit to branch staging
in repository guix.
commit cd8dce8ac4224d425f13b3c0776884c87ff43562
Author: Ricardo Wurmus <address@hidden>
Date: Thu Apr 25 15:17:05 2019 +0200
gnu: gnome-shell: Add gdk-pixbuf+svg to inputs.
Fixes <https://bugs.gnu.org/34124>.
* gnu/packages/gnome.scm (gnome-shell)[inputs]: Add gdk-pixbuf+svg.
[arguments]: Add the lib directory of gdk-pixbuf+svg to the LD_LIBRARY_PATH
wrapper of the gnome-shell executable.
---
gnu/packages/gnome.scm | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/gnu/packages/gnome.scm b/gnu/packages/gnome.scm
index 5583af5..e4739ec 100644
--- a/gnu/packages/gnome.scm
+++ b/gnu/packages/gnome.scm
@@ -5932,7 +5932,8 @@ properties, screen resolution, and other GNOME
parameters.")
`("LD_LIBRARY_PATH" ":" prefix
,(map (lambda (pkg)
(string-append (assoc-ref inputs pkg) "/lib"))
- '("gnome-bluetooth" "librsvg" "libgweather"))))
+ '("gdk-pixbuf"
+ "gnome-bluetooth" "librsvg" "libgweather"))))
(for-each
(lambda (prog)
(wrap-program (string-append out "/bin/" prog)
@@ -5969,6 +5970,7 @@ properties, screen resolution, and other GNOME
parameters.")
("evolution-data-server" ,evolution-data-server)
("gcr" ,gcr)
("gdm" ,gdm)
+ ("gdk-pixbuf" ,gdk-pixbuf+svg)
("gjs" ,gjs)
("gnome-bluetooth" ,gnome-bluetooth)
("gnome-desktop" ,gnome-desktop)