guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

branch master updated: gnu: icecat: Fix WebGL support.


From: guix-commits
Subject: branch master updated: gnu: icecat: Fix WebGL support.
Date: Thu, 11 Jun 2020 19:33:01 -0400

This is an automated email from the git hooks/post-receive script.

roptat pushed a commit to branch master
in repository guix.

The following commit(s) were added to refs/heads/master by this push:
     new 9c6ea3c  gnu: icecat: Fix WebGL support.
9c6ea3c is described below

commit 9c6ea3cb5617a1928073f41f174765ab14adbaa9
Author: Ekaitz Zarraga <ekaitz@elenq.tech>
AuthorDate: Thu Jun 11 22:33:49 2020 +0200

    gnu: icecat: Fix WebGL support.
    
    * gnu/packages/gnuzilla.scm (icecat): Wrap mesa.
    
    Signed-off-by: Julien Lepiller <julien@lepiller.eu>
---
 gnu/packages/gnuzilla.scm | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git a/gnu/packages/gnuzilla.scm b/gnu/packages/gnuzilla.scm
index 1f5deb3..0a8edcb 100644
--- a/gnu/packages/gnuzilla.scm
+++ b/gnu/packages/gnuzilla.scm
@@ -1112,11 +1112,13 @@ from forcing GEXP-PROMISE."
                     (lib (string-append out "/lib"))
                     (gtk (assoc-ref inputs "gtk+"))
                     (gtk-share (string-append gtk "/share"))
+                    (mesa (assoc-ref inputs "mesa"))
+                    (mesa-lib (string-append mesa "/lib"))
                     (pulseaudio (assoc-ref inputs "pulseaudio"))
                     (pulseaudio-lib (string-append pulseaudio "/lib")))
                (wrap-program (car (find-files lib "^icecat$"))
                  `("XDG_DATA_DIRS" prefix (,gtk-share))
-                 `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib)))
+                 `("LD_LIBRARY_PATH" prefix (,pulseaudio-lib ,mesa-lib)))
                #t))))))
     (home-page "https://www.gnu.org/software/gnuzilla/";)
     (synopsis "Entirely free browser derived from Mozilla Firefox")



reply via email to

[Prev in Thread] Current Thread [Next in Thread]