diff options
author | David Craven <david@craven.ch> | 2016-08-22 15:39:53 +0200 |
---|---|---|
committer | David Craven <david@craven.ch> | 2016-08-22 22:48:49 +0200 |
commit | e8bb4336b4e56f4ae6d06b98cba2080800cd7955 (patch) | |
tree | d86b3a7c49d4da6740ac36eed5513ee7ee64ad50 | |
parent | af39609bece22cb14dd5f502596a0b1b724b1809 (diff) | |
download | guix-e8bb4336b4e56f4ae6d06b98cba2080800cd7955.tar guix-e8bb4336b4e56f4ae6d06b98cba2080800cd7955.tar.gz |
gnu: Add kmscon.
* gnu/packages/terminals.scm (kmscon): New variable.
-rw-r--r-- | gnu/packages/terminals.scm | 36 |
1 files changed, 35 insertions, 1 deletions
diff --git a/gnu/packages/terminals.scm b/gnu/packages/terminals.scm index 55d864b073..252ae8b9e8 100644 --- a/gnu/packages/terminals.scm +++ b/gnu/packages/terminals.scm @@ -28,16 +28,20 @@ #:use-module (guix git-download) #:use-module (guix packages) #:use-module (gnu packages autotools) + #:use-module (gnu packages freedesktop) #:use-module (gnu packages gettext) + #:use-module (gnu packages gl) #:use-module (gnu packages glib) #:use-module (gnu packages gnome) #:use-module (gnu packages gtk) + #:use-module (gnu packages linux) #:use-module (gnu packages pkg-config) #:use-module (gnu packages python) #:use-module (gnu packages wm) #:use-module (gnu packages ncurses) #:use-module (gnu packages gtk) - #:use-module (gnu packages gnome)) + #:use-module (gnu packages gnome) + #:use-module (gnu packages xdisorg)) (define-public tilda (package @@ -184,3 +188,33 @@ terminal emulators. It tries to support all common standards while keeping compatibility to existing emulators like xterm, gnome-terminal, konsole, etc.") (home-page "https://www.freedesktop.org/wiki/Software/libtsm") (license (list license:expat license:public-domain)))) + +(define-public kmscon + (package + (name "kmscon") + (version "8") + (source (origin + (method url-fetch) + (uri (string-append + "https://freedesktop.org/software/kmscon/releases/" + "kmscon-" version ".tar.xz")) + (sha256 + (base32 + "0axfwrp3c8f4gb67ap2sqnkn75idpiw09s35wwn6kgagvhf1rc0a")))) + (build-system gnu-build-system) + (native-inputs + `(("pkg-config" ,pkg-config))) + (inputs + `(("libdrm" ,libdrm) + ("libtsm" ,libtsm) + ("libxkbcommon" ,libxkbcommon) + ("logind" ,elogind) + ("mesa" ,mesa) + ("pango" ,pango) + ("udev" ,eudev))) + (synopsis "Simple terminal emulator") + (description "Kmscon is a simple terminal emulator based on linux kernel +mode setting (KMS). It is an attempt to replace the in-kernel VT implementation +with a userspace console. See kmscon(1) man-page for usage information.") + (home-page "https://www.freedesktop.org/wiki/Software/kmscon") + (license (list license:expat license:public-domain)))) |