diff options
author | Ludovic Courtès <ludo@gnu.org> | 2019-04-15 11:26:44 +0200 |
---|---|---|
committer | Ludovic Courtès <ludo@gnu.org> | 2019-04-15 12:24:14 +0200 |
commit | 24356427af0844dafd596b300ca80d1d2aa0d93d (patch) | |
tree | 997e35c91efdc0a2cef39920ec8586ad88924483 | |
parent | 33dbb0465e8ac6b53fac0bc70a40d239648022eb (diff) |
gnu: kmscon: Remove dependency on MESA.
* gnu/packages/terminals.scm (kmscon)[inputs]: Remove MESA.
[arguments]: Add #:disallowed-references.
-rw-r--r-- | gnu/packages/terminals.scm | 10 |
1 files changed, 8 insertions, 2 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 103ec128d8..ece01b5b02 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") |