guix-commits
[Top][All Lists]
Advanced

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

01/02: gnu: mesa: Replace with 20.0.8.


From: guix-commits
Subject: 01/02: gnu: mesa: Replace with 20.0.8.
Date: Fri, 12 Jun 2020 08:39:30 -0400 (EDT)

mbakke pushed a commit to branch staging
in repository guix.

commit fdd883509301845ddb4dc90e70e58b469afb5441
Author: Marius Bakke <marius@gnu.org>
AuthorDate: Fri Jun 12 12:55:12 2020 +0200

    gnu: mesa: Replace with 20.0.8.
    
    * gnu/packages/gl.scm (mesa-20.0.8): New variable.
    (mesa)[replacement]: New field.
---
 gnu/packages/gl.scm | 22 ++++++++++++++++++++++
 1 file changed, 22 insertions(+)

diff --git a/gnu/packages/gl.scm b/gnu/packages/gl.scm
index 8a17f7d..828612e 100644
--- a/gnu/packages/gl.scm
+++ b/gnu/packages/gl.scm
@@ -234,6 +234,13 @@ also known as DXTn or DXTC) for Mesa.")
   (package
     (name "mesa")
     (version "20.0.7")
+
+    ;; Mesa 20.0.5 through 20.0.7 has problems with some graphic drivers, so
+    ;; we need this newer version.
+    ;; https://gitlab.freedesktop.org/mesa/mesa/-/issues/2882
+    ;; https://gitlab.freedesktop.org/mesa/mesa/-/merge_requests/4861
+    (replacement mesa-20.0.8)
+
     (source
       (origin
         (method url-fetch)
@@ -439,6 +446,21 @@ device drivers allows Mesa to be used in many different 
environments ranging
 from software emulation to complete hardware acceleration for modern GPUs.")
     (license license:x11)))
 
+;; Replacement package to fix 
<https://gitlab.freedesktop.org/mesa/mesa/-/issues/2863>.
+(define mesa-20.0.8
+  (package
+    (inherit mesa)
+    (version "20.0.8")
+    (source (origin
+              (inherit (package-source mesa))
+              (uri (list (string-append "https://mesa.freedesktop.org/archive/";
+                                        "mesa-" version ".tar.xz")
+                         (string-append "ftp://ftp.freedesktop.org/pub/mesa/";
+                                        "mesa-" version ".tar.xz")))
+              (sha256
+               (base32
+                "0v0bfh3ay07s6msxmklvwfaif0q02kq2yhy65fdhys49vw8c1w3c"))))))
+
 (define-public mesa-opencl
   (package
     (inherit mesa)



reply via email to

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