guix-commits
[Top][All Lists]
Advanced

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

01/05: gnu: kmscon: Remove dependency on MESA.


From: guix-commits
Subject: 01/05: gnu: kmscon: Remove dependency on MESA.
Date: Mon, 15 Apr 2019 06:25:11 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit 24356427af0844dafd596b300ca80d1d2aa0d93d
Author: Ludovic Courtès <address@hidden>
Date:   Mon Apr 15 11:26:44 2019 +0200

    gnu: kmscon: Remove dependency on MESA.
    
    * gnu/packages/terminals.scm (kmscon)[inputs]: Remove MESA.
    [arguments]: Add #:disallowed-references.
---
 gnu/packages/terminals.scm | 10 ++++++++--
 1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm
index 103ec12..ece01b5 100644
--- a/gnu/packages/terminals.scm
+++ b/gnu/packages/terminals.scm
@@ -252,7 +252,10 @@ compatibility to existing emulators like xterm, 
gnome-terminal, konsole, etc.")
                 (modules '((guix build utils)))))
       (build-system gnu-build-system)
       (arguments
-       `(#:phases (modify-phases %standard-phases
+       `(;; The closure of MESA is huge so we'd rather avoid it.
+         #:disallowed-references (,mesa)
+
+         #:phases (modify-phases %standard-phases
                     (replace 'bootstrap
                       (lambda _
                         (setenv "NOCONFIGURE" "indeed")
@@ -285,7 +288,10 @@ compatibility to existing emulators like xterm, 
gnome-terminal, konsole, etc.")
          ("libtsm" ,libtsm)
          ("libxkbcommon" ,libxkbcommon)
          ("logind" ,elogind)
-         ("mesa" ,mesa)
+         ;; MESA can be used for accelerated video output via OpenGLESv2, but
+         ;; it's a bit dependency that we'd rather avoid in the installation
+         ;; image.
+         ;; ("mesa" ,mesa)
          ("pango" ,pango)
          ("udev" ,eudev)))
       (synopsis "Linux KMS-based terminal emulator")



reply via email to

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