2015-08-24 21:48:40 +02:00
|
|
|
|
;;; GNU Guix --- Functional package management for GNU
|
2018-03-19 13:21:20 +01:00
|
|
|
|
;;; Copyright © 2015, 2016, 2017, 2018 Efraim Flashner <efraim@flashner.co.il>
|
2016-06-01 19:54:53 +02:00
|
|
|
|
;;; Copyright © 2016 Mckinley Olsen <mck.olsen@gmail.com>
|
2017-05-27 16:57:19 +02:00
|
|
|
|
;;; Copyright © 2016, 2017 Alex Griffin <a@ajgrf.com>
|
2016-08-22 15:39:19 +02:00
|
|
|
|
;;; Copyright © 2016 David Craven <david@craven.ch>
|
2019-01-07 14:05:37 +01:00
|
|
|
|
;;; Copyright © 2016, 2017, 2019 Ludovic Courtès <ludo@gnu.org>
|
2017-01-05 00:23:18 +01:00
|
|
|
|
;;; Copyright © 2016, 2017 José Miguel Sánchez García <jmi2k@openmailbox.org>
|
2019-02-17 21:41:28 +01:00
|
|
|
|
;;; Copyright © 2017, 2018, 2019 Tobias Geerinckx-Rice <me@tobias.gr>
|
2017-10-30 18:47:50 +01:00
|
|
|
|
;;; Copyright © 2017 Kei Kebreau <kkebreau@posteo.net>
|
2018-11-29 06:49:16 +01:00
|
|
|
|
;;; Copyright © 2017, 2018 Ricardo Wurmus <rekado@elephly.net>
|
2017-04-23 13:46:41 +02:00
|
|
|
|
;;; Copyright © 2017 Petter <petter@mykolab.ch>
|
2018-02-03 20:44:13 +01:00
|
|
|
|
;;; Copyright © 2018 Hartmut Goebel <h.goebel@crazy-compilers.com>
|
2018-06-13 09:56:15 +02:00
|
|
|
|
;;; Copyright © 2018 Arun Isaac <arunisaac@systemreboot.net>
|
2018-12-26 12:41:58 +01:00
|
|
|
|
;;; Copyright © 2018 Gabriel Hondet <gabrielhondet@gmail.com>
|
2019-01-29 10:05:00 +01:00
|
|
|
|
;;; Copyright © 2019 Rutger Helling <rhelling@mykolab.com>
|
2019-02-09 07:45:47 +01:00
|
|
|
|
;;; Copyright © 2018, 2019 Eric Bavier <bavier@member.fsf.org>
|
2015-08-24 21:48:40 +02:00
|
|
|
|
;;;
|
|
|
|
|
;;; This file is part of GNU Guix.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is free software; you can redistribute it and/or modify it
|
|
|
|
|
;;; under the terms of the GNU General Public License as published by
|
|
|
|
|
;;; the Free Software Foundation; either version 3 of the License, or (at
|
|
|
|
|
;;; your option) any later version.
|
|
|
|
|
;;;
|
|
|
|
|
;;; GNU Guix is distributed in the hope that it will be useful, but
|
|
|
|
|
;;; WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;;; GNU General Public License for more details.
|
|
|
|
|
;;;
|
|
|
|
|
;;; You should have received a copy of the GNU General Public License
|
|
|
|
|
;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
|
|
|
|
|
|
(define-module (gnu packages terminals)
|
|
|
|
|
#:use-module ((guix licenses) #:prefix license:)
|
2017-10-30 18:47:50 +01:00
|
|
|
|
#:use-module (guix build-system cmake)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (guix build-system gnu)
|
2017-10-02 09:34:25 +02:00
|
|
|
|
#:use-module (guix build-system glib-or-gtk)
|
2018-01-21 11:41:37 +01:00
|
|
|
|
#:use-module (guix build-system go)
|
2016-07-27 23:22:32 +02:00
|
|
|
|
#:use-module (guix build-system python)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (guix download)
|
2016-06-01 19:54:53 +02:00
|
|
|
|
#:use-module (guix git-download)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (guix packages)
|
2017-04-23 13:46:41 +02:00
|
|
|
|
#:use-module (gnu packages)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (gnu packages autotools)
|
2018-02-03 20:44:13 +01:00
|
|
|
|
#:use-module (gnu packages check)
|
2018-12-26 12:41:58 +01:00
|
|
|
|
#:use-module (gnu packages compression)
|
2017-07-14 09:01:07 +02:00
|
|
|
|
#:use-module (gnu packages docbook)
|
2018-12-26 12:41:58 +01:00
|
|
|
|
#:use-module (gnu packages fontutils)
|
2016-08-22 15:39:53 +02:00
|
|
|
|
#:use-module (gnu packages freedesktop)
|
2019-02-17 23:26:07 +01:00
|
|
|
|
#:use-module (gnu packages gcc)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (gnu packages gettext)
|
2016-08-22 15:39:53 +02:00
|
|
|
|
#:use-module (gnu packages gl)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (gnu packages glib)
|
|
|
|
|
#:use-module (gnu packages gnome)
|
|
|
|
|
#:use-module (gnu packages gtk)
|
2018-12-26 12:41:58 +01:00
|
|
|
|
#:use-module (gnu packages image)
|
2018-06-13 09:56:15 +02:00
|
|
|
|
#:use-module (gnu packages libevent)
|
2016-08-22 15:39:53 +02:00
|
|
|
|
#:use-module (gnu packages linux)
|
2017-07-14 09:01:07 +02:00
|
|
|
|
#:use-module (gnu packages ncurses)
|
2016-12-07 18:03:09 +01:00
|
|
|
|
#:use-module (gnu packages perl)
|
gnu: Move test packages from perl to perl-check.
* gnu/packages/perl.scm (perl-test2-bundle-extended,
perl-test2-plugin-nowarnings, perl-test-base, perl-test-class,
perl-test-class-most, perl-test-cleannamespaces, perl-test-command,
perl-test-cpan-meta, perl-test-cpan-meta-json, perl-test-deep,
perl-test-differences, perl-test-directory, perl-test-eol,
perl-test-exception, perl-test-fatal, perl-test-file-sharedir-dist,
perl-test-files, perl-test-harness, perl-test-leaktrace,
perl-test-longstring, perl-test-manifest, perl-test-memory-cycle,
perl-test-mockobject, perl-test-mocktime, perl-test-most, perl-test-needs,
perl-test-notabs, perl-test-nowarnings, perl-test-number-delta,
perl-test-output, perl-test-pod, perl-test-pod-coverage, perl-test-requires,
perl-test-script, perl-test-sharedfork, perl-test-simple, perl-test-taint,
perl-test-tester, perl-test-trap, perl-test-utf8, perl-test-warn,
perl-test-warnings, perl-test-without-module, perl-test-writevariants,
perl-test-yaml, perl-test-trailingspace): Move variables to ...
* gnu/packages/perl-check.scm: ... this new file.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/admin.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/crypto.scm,
gnu/packages/databases.scm,
gnu/packages/glib.scm,
gnu/packages/gnupg.scm,
gnu/packages/image-viewers.scm,
gnu/packages/language.scm,
gnu/packages/networking.scm,
gnu/packages/package-management.scm,
gnu/packages/perl.scm,
gnu/packages/terminals.scm,
gnu/packages/tex.scm,
gnu/packages/version-control.scm,
gnu/packages/web.scm,
gnu/packages/xml.scm,
gnu/packages/xorg.scm: Use perl-check module.
2017-11-13 23:03:01 +01:00
|
|
|
|
#:use-module (gnu packages perl-check)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
#:use-module (gnu packages pkg-config)
|
2016-07-27 23:22:32 +02:00
|
|
|
|
#:use-module (gnu packages python)
|
gnu: Move more packages from python to python-web.
* gnu/packages/python.scm (python-requests, python2-requests)
(python-requests-2.7, python-oauthlib, python2-oauthlib)
(python-furl, python2-furl, python-wsgi-intercept)
(python-publicsuffix, python2-publicsuffix)
(python-publicsuffix2, python2-publicsuffix2): Move to...
* gnu/packages/python-web.scm: ... here.
* gnu/packages/bioinformatics.scm, gnu/packages/finance.scm:
gnu/packages/maths.scm, gnu/packages/terminals.scm,
gnu/packages/video.scm, gnu/packages/virtualization.scm: Adjust
accordingly.
2017-11-15 14:59:31 +01:00
|
|
|
|
#:use-module (gnu packages python-web)
|
gnu: Separate Python core packages from the rest.
* gnu/packages/python.scm: Move hundreds of package definitions from here...
* gnu/packages/python-xyz.scm: ...to this new module.
* gnu/local.mk (GNU_SYSTEM_MODULES): Add it.
* gnu/packages/ada.scm,
gnu/packages/admin.scm,
gnu/packages/android.scm,
gnu/packages/audio.scm,
gnu/packages/backup.scm,
gnu/packages/benchmark.scm,
gnu/packages/bioinformatics.scm,
gnu/packages/bittorrent.scm,
gnu/packages/calendar.scm,
gnu/packages/check.scm,
gnu/packages/chemistry.scm,
gnu/packages/cluster.scm,
gnu/packages/compression.scm,
gnu/packages/connman.scm,
gnu/packages/crypto.scm,
gnu/packages/cups.scm,
gnu/packages/databases.scm,
gnu/packages/dav.scm,
gnu/packages/direct-connect.scm,
gnu/packages/disk.scm,
gnu/packages/django.scm,
gnu/packages/dlang.scm,
gnu/packages/docker.scm,
gnu/packages/ebook.scm,
gnu/packages/elf.scm,
gnu/packages/emacs.scm,
gnu/packages/emulators.scm,
gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm,
gnu/packages/finance.scm,
gnu/packages/fltk.scm,
gnu/packages/fontutils.scm,
gnu/packages/freedesktop.scm,
gnu/packages/game-development.scm,
gnu/packages/games.scm,
gnu/packages/geo.scm,
gnu/packages/gl.scm,
gnu/packages/glib.scm,
gnu/packages/gnome.scm,
gnu/packages/gnupg.scm,
gnu/packages/gnuzilla.scm,
gnu/packages/graph.scm,
gnu/packages/graphics.scm,
gnu/packages/graphviz.scm,
gnu/packages/gtk.scm,
gnu/packages/ham-radio.scm,
gnu/packages/image-processing.scm,
gnu/packages/image-viewers.scm,
gnu/packages/image.scm,
gnu/packages/irc.scm,
gnu/packages/jrnl.scm,
gnu/packages/julia.scm,
gnu/packages/kde-frameworks.scm,
gnu/packages/key-mon.scm,
gnu/packages/libffi.scm,
gnu/packages/libreoffice.scm,
gnu/packages/libusb.scm,
gnu/packages/lirc.scm,
gnu/packages/logging.scm,
gnu/packages/machine-learning.scm,
gnu/packages/mail.scm,
gnu/packages/mate.scm,
gnu/packages/maths.scm,
gnu/packages/medical.scm,
gnu/packages/messaging.scm,
gnu/packages/monitoring.scm,
gnu/packages/mp3.scm,
gnu/packages/mpd.scm,
gnu/packages/music.scm,
gnu/packages/networking.scm,
gnu/packages/nutrition.scm,
gnu/packages/openldap.scm,
gnu/packages/openstack.scm,
gnu/packages/package-management.scm,
gnu/packages/password-utils.scm,
gnu/packages/patchutils.scm,
gnu/packages/pdf.scm,
gnu/packages/photo.scm,
gnu/packages/polkit.scm,
gnu/packages/protobuf.scm,
gnu/packages/python-crypto.scm,
gnu/packages/python-web.scm,
gnu/packages/qt.scm,
gnu/packages/rdf.scm,
gnu/packages/ruby.scm,
gnu/packages/search.scm,
gnu/packages/selinux.scm,
gnu/packages/serialization.scm,
gnu/packages/shells.scm,
gnu/packages/simulation.scm,
gnu/packages/ssh.scm,
gnu/packages/statistics.scm,
gnu/packages/storage.scm,
gnu/packages/sync.scm,
gnu/packages/terminals.scm,
gnu/packages/textutils.scm,
gnu/packages/time.scm,
gnu/packages/tls.scm,
gnu/packages/tor.scm,
gnu/packages/tryton.scm,
gnu/packages/version-control.scm,
gnu/packages/video.scm,
gnu/packages/virtualization.scm,
gnu/packages/vpn.scm,
gnu/packages/web-browsers.scm,
gnu/packages/web.scm,
gnu/packages/wicd.scm,
gnu/packages/xdisorg.scm,
gnu/packages/xorg.scm: Update module references.
2019-01-15 14:21:30 +01:00
|
|
|
|
#:use-module (gnu packages python-xyz)
|
2017-07-14 09:01:07 +02:00
|
|
|
|
#:use-module (gnu packages qt)
|
2018-06-13 09:56:15 +02:00
|
|
|
|
#:use-module (gnu packages serialization)
|
|
|
|
|
#:use-module (gnu packages ssh)
|
2018-01-21 11:54:14 +01:00
|
|
|
|
#:use-module (gnu packages textutils)
|
2016-06-01 19:54:53 +02:00
|
|
|
|
#:use-module (gnu packages wm)
|
2016-09-09 00:01:19 +02:00
|
|
|
|
#:use-module (gnu packages xdisorg)
|
2016-09-09 00:07:03 +02:00
|
|
|
|
#:use-module (gnu packages xml)
|
2017-10-30 18:47:50 +01:00
|
|
|
|
#:use-module (gnu packages xorg)
|
2016-09-09 00:01:19 +02:00
|
|
|
|
#:use-module (srfi srfi-26))
|
2015-08-24 21:48:40 +02:00
|
|
|
|
|
|
|
|
|
(define-public tilda
|
|
|
|
|
(package
|
|
|
|
|
(name "tilda")
|
2018-03-19 13:21:20 +01:00
|
|
|
|
(version "1.4.1")
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(source (origin
|
2018-11-29 22:16:46 +01:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/lanoxx/tilda.git")
|
|
|
|
|
(commit (string-append "tilda-" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-11-29 22:16:46 +01:00
|
|
|
|
"154rsldqjv2m1bddisb930qicb0y35kx7bxq392n2hn68jr2pxkj"))))
|
2017-10-02 09:34:25 +02:00
|
|
|
|
(build-system glib-or-gtk-build-system)
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(arguments
|
2018-03-19 13:21:20 +01:00
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
2018-06-05 21:09:55 +02:00
|
|
|
|
(replace 'bootstrap
|
2018-03-19 13:21:20 +01:00
|
|
|
|
(lambda _
|
|
|
|
|
(setenv "NOCONFIGURE" "true")
|
|
|
|
|
(invoke "sh" "autogen.sh"))))))
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
2016-09-25 09:33:02 +02:00
|
|
|
|
("gettext" ,gettext-minimal)
|
2015-11-19 13:45:45 +01:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(inputs
|
2017-10-02 09:34:25 +02:00
|
|
|
|
`(("libconfuse" ,libconfuse)
|
2015-11-19 13:45:45 +01:00
|
|
|
|
("vte" ,vte)))
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(synopsis "GTK+-based drop-down terminal")
|
|
|
|
|
(description "Tilda is a terminal emulator similar to normal terminals like
|
|
|
|
|
gnome-terminal (GNOME) or Konsole (KDE), with the difference that it drops down
|
|
|
|
|
from the edge of a screen when a certain configurable hotkey is pressed. This
|
|
|
|
|
is similar to the built-in consoles in some applications. Tilda is highly
|
2017-04-16 18:06:57 +02:00
|
|
|
|
configurable through a graphical wizard.")
|
2015-08-24 21:48:40 +02:00
|
|
|
|
(home-page "https://github.com/lanoxx/tilda")
|
|
|
|
|
(license license:gpl2+)))
|
2016-06-01 19:54:53 +02:00
|
|
|
|
|
|
|
|
|
(define-public termite
|
|
|
|
|
(package
|
|
|
|
|
(name "termite")
|
2018-11-21 23:01:38 +01:00
|
|
|
|
(version "14")
|
2016-06-01 19:54:53 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/thestinger/"
|
|
|
|
|
name ".git"))
|
|
|
|
|
(commit (string-append "v" version))
|
|
|
|
|
(recursive? #t)))
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(sha256
|
2016-10-15 20:12:23 +02:00
|
|
|
|
(base32
|
2018-11-21 23:01:38 +01:00
|
|
|
|
"0dmz9rpc2fdvcwhcmjnhb48ixn403gxpq03g334d1hgjw2hsyx7x"))))
|
2016-06-01 19:54:53 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2016-10-15 20:15:00 +02:00
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure))
|
2016-06-01 19:54:53 +02:00
|
|
|
|
#:tests? #f
|
|
|
|
|
;; This sets the destination when installing the necessary terminal
|
|
|
|
|
;; capability data, which are not provided by 'ncurses'. See
|
|
|
|
|
;; <https://lists.gnu.org/archive/html/bug-ncurses/2009-10/msg00031.html>.
|
|
|
|
|
#:make-flags (list "PREFIX="
|
|
|
|
|
(string-append "VERSION=v" (version))
|
|
|
|
|
(string-append "DESTDIR="
|
|
|
|
|
(assoc-ref %outputs "out")))))
|
|
|
|
|
(inputs
|
2018-03-16 16:50:14 +01:00
|
|
|
|
`(("vte" ,vte-ng)
|
|
|
|
|
("gtk+" ,gtk+)
|
|
|
|
|
("ncurses" ,ncurses)))
|
2016-06-01 19:54:53 +02:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
|
|
|
|
|
;; FIXME: This should only be located in 'ncurses'. Nonetheless it is
|
|
|
|
|
;; provided for usability reasons. See <https://bugs.gnu.org/22138>.
|
|
|
|
|
(native-search-paths
|
|
|
|
|
(list (search-path-specification
|
|
|
|
|
(variable "TERMINFO_DIRS")
|
|
|
|
|
(files '("share/terminfo")))))
|
|
|
|
|
(home-page "https://github.com/thestinger/termite/")
|
|
|
|
|
(synopsis "Keyboard-centric, VTE-based terminal")
|
|
|
|
|
(description "Termite is a minimal terminal emulator designed for use with
|
|
|
|
|
tiling window managers. It is a modal application, similar to Vim, with an
|
|
|
|
|
insert mode and command mode where keybindings have different functions.")
|
|
|
|
|
|
|
|
|
|
;; Files under util/ are under the Expat license; the rest is LGPLv2+.
|
|
|
|
|
(license license:lgpl2.0+)))
|
2016-07-27 23:22:32 +02:00
|
|
|
|
|
|
|
|
|
(define-public asciinema
|
|
|
|
|
(package
|
|
|
|
|
(name "asciinema")
|
2017-05-27 16:57:19 +02:00
|
|
|
|
(version "1.4.0")
|
2016-07-27 23:22:32 +02:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
2017-05-27 16:57:19 +02:00
|
|
|
|
(uri (pypi-uri "asciinema" version))
|
2016-07-27 23:22:32 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2017-05-27 16:57:19 +02:00
|
|
|
|
"1jrf8c8711gkdilmvyv3d37kp8xfvdc5cqighw5k92a6g9z4acgv"))))
|
2016-07-27 23:22:32 +02:00
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'build 'patch-exec-paths
|
|
|
|
|
(lambda* (#:key inputs #:allow-other-keys)
|
|
|
|
|
(let ((ncurses (assoc-ref inputs "ncurses")))
|
|
|
|
|
(substitute* "asciinema/recorder.py"
|
|
|
|
|
(("'tput'")
|
|
|
|
|
(string-append "'" ncurses "/bin/tput'"))))
|
|
|
|
|
#t)))))
|
gnu: Remove python-setuptools and python2-setuptools from inputs (part 2)
This patch contains the changes where removing setuptools from the inputs
affected some code-lines beside.
* gnu/packages/admin.scm (ansible): Remove all [inputs], [native-inputs] and
[propagated-inputs] where python-setuptools or python2-setuptools are the
sole entries. Remove python-setuptools and python2-setuptools listed on a
line by its own from [inputs], [native-inputs] and [propagated-inputs].
* gnu/packages/backup.scm (duplicity): Likewise.
* gnu/packages/bioinformatics.scm (bamm, python2-pybedtools,
python2-bx-python, python2-dendropy, python-pysam, python2-pysam, clipper,
crossmap, cutadapt, deeptools, grit, idr, python2-warpedlmm,
pbtranscript-tofu, seqmagick): Likewise.
* gnu/packages/docbook.scm (dblatex): Likewise.
* gnu/packages/freedesktop.scm (python-pyxdg, python2-pyxdg): Likewise.
* gnu/packages/lirc.scm (python2-lirc): Likewise.
* gnu/packages/mp3.scm (eyed3): Likewise.
* gnu/packages/nutrition.scm (gourmet): Likewise.
* gnu/packages/openstack.scm (python-hacking, python2-hacking,
python-os-testr, python2-os-testr,
python-stevedore, python2-stevedore,
python-tempest-lib, python2-tempest-lib,
python-oslo.log, python2-oslo.log,
python-keystoneclient, python2-keystoneclient): Likewise.
* gnu/packages/password-utils.scm (assword): Likewise.
* gnu/packages/python.scm (python-passlib, python2-passlib,
python-babel, python2-babel,
python-parse-type,
python-pytest, python2-pytest,
python-scripttest, python2-scripttest,
python-testtools, python2-testtools,
python-testscenarios, python2-testscenarios,
python-subunit, python2-subunit,
python-pbr-0.11,
python-pbr, python2-pbr,
python-testrepository, python2-testrepository,
behave,
python-wheel, python2-wheel,
python-requests, python2-requests,
python-jsonschema, python2-jsonschema,
python-pyjwt, python2-pyjwt,
python-virtualenv, python2-virtualenv,
python-jinja2, python2-jinja2,
python-joblib, python2-joblib,
python-sphinx, python2-sphinx,
python-feedgenerator, python2-feedgenerator,
python-scikit-image, python2-scikit-image,
python-redis, python2-redis,
python2-fastlmm,
python-numpydoc, python2-numpydoc,
python-matplotlib, python2-matplotlib,
python2-pysnptools,
python-rpy2, python2-rpy2,
python-pillow, python2-pillow,
python-pycparser, python2-pycparser,
python-cffi, python2-cffi,
python-cairocffi, python2-cairocffi,
python-drmaa, python2-drmaa,
python-pathpy, python2-pathpy,
python-simplegeneric, python2-simplegeneric,
python-ipython, python2-ipython,
python-apsw, python2-apsw,
python-lxml, python2-lxml,
python-networkx, python2-networkx,
python-pyzmq, python2-pyzmq,
python-mccabe, python2-mccabe,
python-mccabe-0.2.1,
python-flake8, python2-flake8,
python-flake8-2.2.4,
python-mistune, python2-mistune,
python-ptyprocess, python2-ptyprocess,
python-llfuse, python2-llfuse,
python-webob, python2-webob,
python-xlrd, python2-xlrd,
python-tables, python2-tables,
python-pip, python2-pip,
python-libarchive-c, python2-libarchive-c,
python-docopt, python2-docopt,
python-pyrfc3339, python2-pyrfc3339,
python-configobj, python2-configobj,
python-clint, python2-clint,
python-rply, python2-rply,
python2-rpython,
python-widgetsnbextension, python2-widgetsnbextension
jupyter,
python-jupyter-console, python2-jupyter-console,
python-hy, python2-hy,
python-urllib3, python2-urllib3,
python-rsa, python2-rsa,
python-tox, python2-tox,
python2-hypothesis,
python-paste, python2-paste,
python-pastescript, python2-pastescript,
python2-unicodecsv,
python-pkgconfig, python2-pkgconfig,
python2-rope,
python-sqlparse, python2-sqlparse,
python-gevent, python2-gevent,
python-tabulate, python2-tabulate,
python-arrow, python2-arrow,
python-cleo, python2-cleo,
python-fake-factory, python2-fake-factory,
ptpython): Likewise.
* gnu/packages/rdf.scm (python-rdflib, python2-rdflib): Likewise.
* gnu/packages/terminals.scm (asciinema): Likewise.
* gnu/packages/version-control.scm (git-annex-remote-hubic): Likewise.
* gnu/packages/xdisorg.scm (arandr): Likewise.
2016-09-28 13:30:54 +02:00
|
|
|
|
(inputs `(("ncurses" ,ncurses)))
|
2016-12-17 12:19:41 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
;; For tests.
|
|
|
|
|
`(("python-requests" ,python-requests)))
|
2016-07-27 23:22:32 +02:00
|
|
|
|
(home-page "https://asciinema.org")
|
|
|
|
|
(synopsis "Terminal session recorder")
|
|
|
|
|
(description
|
|
|
|
|
"Use asciinema to record and share your terminal sessions, the right way.
|
|
|
|
|
Forget screen recording apps and blurry video. Enjoy a lightweight, purely
|
|
|
|
|
text-based approach to terminal recording.")
|
|
|
|
|
(license license:gpl3)))
|
2016-08-22 15:39:19 +02:00
|
|
|
|
|
|
|
|
|
(define-public libtsm
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(let ((commit "f70e37982f382b03c6939dac3d5f814450bda253")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "libtsm")
|
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
;; The freedesktop repository is no longer maintained.
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/Aetf/" name))
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0mwn91i5h5d518i1s05y7hzv6bc13vzcvxszpfh77473iwg4wprx"))))
|
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:configure-flags '("-DBUILD_TESTING=ON")))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libxkbcommon" ,libxkbcommon)
|
|
|
|
|
("check" ,check)))
|
|
|
|
|
(synopsis "Xterm state machine library")
|
|
|
|
|
(description "TSM is a state machine for DEC VT100-VT520 compatible
|
2016-08-22 15:39:19 +02:00
|
|
|
|
terminal emulators. It tries to support all common standards while keeping
|
|
|
|
|
compatibility to existing emulators like xterm, gnome-terminal, konsole, etc.")
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(home-page "https://www.freedesktop.org/wiki/Software/libtsm")
|
|
|
|
|
;; Hash table implementation is lgpl2.1+ licensed.
|
|
|
|
|
;; The wcwidth implementation in external/wcwidth.{h,c} uses a license
|
|
|
|
|
;; derived from ISC.
|
|
|
|
|
;; UCS-4 to UTF-8 encoding is copied from "terminology" which is released
|
|
|
|
|
;; under the bsd 2 license.
|
|
|
|
|
(license (list license:expat license:lgpl2.1+ license:isc license:bsd-2)))))
|
2016-08-22 15:39:53 +02:00
|
|
|
|
|
|
|
|
|
(define-public kmscon
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(let ((commit "01dd0a231e2125a40ceba5f59fd945ff29bf2cdc")
|
|
|
|
|
(revision "1"))
|
|
|
|
|
(package
|
|
|
|
|
(name "kmscon")
|
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
;; The freedesktop repository is no longer maintained.
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/Aetf/" name))
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0q62kjsvy2iwy8adfiygx2bfwlh83rphgxbis95ycspqidg9py87"))
|
2018-11-16 12:40:26 +01:00
|
|
|
|
(patches
|
|
|
|
|
(search-patches "kmscon-runtime-keymap-switch.patch"))
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(modules '((guix build utils)))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases (modify-phases %standard-phases
|
2018-11-27 16:56:12 +01:00
|
|
|
|
(replace 'bootstrap
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(lambda _
|
2018-11-27 16:56:12 +01:00
|
|
|
|
(setenv "NOCONFIGURE" "indeed")
|
|
|
|
|
(invoke "sh" "autogen.sh")))
|
2018-10-28 03:27:52 +01:00
|
|
|
|
;; Use elogind instead of systemd.
|
|
|
|
|
(add-before 'configure 'remove-systemd
|
|
|
|
|
(lambda _
|
|
|
|
|
(substitute* "configure"
|
|
|
|
|
(("libsystemd-daemon libsystemd-login")
|
|
|
|
|
"libelogind"))
|
|
|
|
|
(substitute* "src/uterm_systemd.c"
|
|
|
|
|
(("#include <systemd/sd-login.h>")
|
|
|
|
|
"#include <elogind/sd-login.h>")
|
|
|
|
|
;; We don't have this header.
|
|
|
|
|
(("#include <systemd/sd-daemon\\.h>")
|
|
|
|
|
"")
|
|
|
|
|
;; Replace the call to 'sd_booted' by the truth value.
|
|
|
|
|
(("sd_booted\\(\\)")
|
|
|
|
|
"1")))))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("libtool" ,libtool)
|
|
|
|
|
("libxslt" ,libxslt) ;to build the man page
|
|
|
|
|
("libxml2" ,libxml2) ;for XML_CATALOG_FILES
|
|
|
|
|
("docbook-xsl" ,docbook-xsl)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libdrm" ,libdrm)
|
|
|
|
|
("libtsm" ,libtsm)
|
|
|
|
|
("libxkbcommon" ,libxkbcommon)
|
|
|
|
|
("logind" ,elogind)
|
|
|
|
|
("mesa" ,mesa)
|
|
|
|
|
("pango" ,pango)
|
|
|
|
|
("udev" ,eudev)))
|
|
|
|
|
(synopsis "Linux KMS-based terminal emulator")
|
|
|
|
|
(description "Kmscon is a terminal emulator based on Linux's @dfn{kernel
|
2016-09-09 00:01:19 +02:00
|
|
|
|
mode setting} (KMS). It can replace the in-kernel virtual terminal (VT)
|
|
|
|
|
implementation with a user-space console. Compared to the Linux console,
|
|
|
|
|
kmscon provides enhanced features including XKB-compatible internationalized
|
|
|
|
|
keyboard support, UTF-8 input/font support, hardware-accelerated rendering,
|
|
|
|
|
multi-seat support, a replacement for @command{mingetty}, and more.")
|
2018-10-28 03:27:52 +01:00
|
|
|
|
(home-page "https://www.freedesktop.org/wiki/Software/kmscon")
|
|
|
|
|
;; Hash table implementation is lgpl2.1+ licensed.
|
|
|
|
|
;; The wcwidth implementation in external/wcwidth.{h,c} uses a license
|
|
|
|
|
;; derived from ISC.
|
|
|
|
|
;; UCS-4 to UTF-8 encoding is copied from "terminology" which is released
|
|
|
|
|
;; under the bsd 2 license.
|
|
|
|
|
;; Unifont-Font is from http://unifoundry.com/unifont.html and licensed
|
|
|
|
|
;; under the terms of the GNU GPL.
|
|
|
|
|
(license (list license:expat license:lgpl2.1+ license:bsd-2
|
|
|
|
|
license:gpl2+))
|
|
|
|
|
(supported-systems (filter (cut string-suffix? "-linux" <>)
|
|
|
|
|
%supported-systems)))))
|
2016-09-23 12:52:17 +02:00
|
|
|
|
|
2016-12-07 18:03:09 +01:00
|
|
|
|
(define-public libtermkey
|
|
|
|
|
(package
|
|
|
|
|
(name "libtermkey")
|
2019-02-21 16:07:59 +01:00
|
|
|
|
(version "0.21.1")
|
2016-12-07 18:03:09 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
2019-02-19 16:22:35 +01:00
|
|
|
|
(uri (string-append "http://www.leonerd.org.uk/code/libtermkey/"
|
|
|
|
|
"libtermkey-" version ".tar.gz"))
|
2016-12-07 18:03:09 +01:00
|
|
|
|
(sha256
|
2019-02-21 16:07:59 +01:00
|
|
|
|
(base32 "0psd0kf10q5ixfima0mxz10syy7qq1ilz1npr0rz862xycvzgjyf"))))
|
2016-12-07 18:03:09 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:make-flags (list
|
|
|
|
|
"CC=gcc"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:phases (modify-phases %standard-phases
|
2019-02-19 16:24:30 +01:00
|
|
|
|
(delete 'configure)) ; no configure script
|
2016-12-07 18:03:09 +01:00
|
|
|
|
#:test-target "test"))
|
2018-03-16 16:50:14 +01:00
|
|
|
|
(inputs `(("ncurses" ,ncurses)))
|
|
|
|
|
(native-inputs `(("libtool" ,libtool)
|
2016-12-07 18:03:09 +01:00
|
|
|
|
("perl-test-harness" ,perl-test-harness)
|
2018-03-16 16:50:14 +01:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
2016-12-07 18:03:09 +01:00
|
|
|
|
(synopsis "Keyboard entry processing library for terminal-based programs")
|
|
|
|
|
(description
|
|
|
|
|
"Libtermkey handles all the necessary logic to recognise special keys, UTF-8
|
|
|
|
|
combining, and so on, with a simple interface.")
|
|
|
|
|
(home-page "http://www.leonerd.org.uk/code/libtermkey")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
2016-09-23 12:52:17 +02:00
|
|
|
|
(define-public picocom
|
|
|
|
|
(package
|
|
|
|
|
(name "picocom")
|
2016-10-15 20:22:21 +02:00
|
|
|
|
(version "2.2")
|
2016-09-23 12:52:17 +02:00
|
|
|
|
(source (origin
|
2018-11-29 22:17:04 +01:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/npat-efault/picocom.git")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
2016-09-23 12:52:17 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-11-29 22:17:04 +01:00
|
|
|
|
"06b2ic34dnxc73cprc5imi3iamlhsv623sbg9vj5h5rvs586dwjx"))))
|
2016-09-23 12:52:17 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags '("CC=gcc")
|
|
|
|
|
#:tests? #f ; No tests
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let* ((out (assoc-ref outputs "out"))
|
|
|
|
|
(bin (string-append out "/bin"))
|
|
|
|
|
(man (string-append out "/share/man/man1")))
|
|
|
|
|
(install-file "picocom" bin)
|
|
|
|
|
(install-file "picocom.1" man)))))))
|
|
|
|
|
(home-page "https://github.com/npat-efault/picocom")
|
|
|
|
|
(synopsis "Minimal dumb-terminal emulation program")
|
|
|
|
|
(description "It was designed to serve as a simple, manual, modem
|
|
|
|
|
configuration, testing, and debugging tool. It has also serves well
|
|
|
|
|
as a low-tech serial communications program to allow access to all
|
|
|
|
|
types of devices that provide serial consoles.")
|
|
|
|
|
(license license:gpl2+)))
|
2017-01-05 00:23:18 +01:00
|
|
|
|
|
|
|
|
|
(define-public beep
|
|
|
|
|
(package
|
|
|
|
|
(name "beep")
|
2019-02-17 23:26:07 +01:00
|
|
|
|
(version "1.4.3")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
;; The original beep 1.3 at <http://www.johnath.com/beep> has been
|
|
|
|
|
;; unmaintained for some time, and vulnerable to at least two CVEs:
|
|
|
|
|
;; https://github.com/johnath/beep/issues/11#issuecomment-454056858
|
|
|
|
|
;; Use this maintained fork instead.
|
|
|
|
|
(url "https://github.com/spkr-beep/beep.git")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32 "1gramwa2zm59kqjhv96fi8vg7l6lyffv02h0310vb90naschi99g"))))
|
2017-01-05 00:23:18 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
2019-02-17 21:41:28 +01:00
|
|
|
|
`(#:tests? #f ; no tests
|
2019-02-17 23:26:07 +01:00
|
|
|
|
#:make-flags
|
|
|
|
|
(list (string-append "prefix=" (assoc-ref %outputs "out"))
|
|
|
|
|
(string-append "pkgdocdir=$(docdir)/" ,name "-" ,version))
|
2017-01-05 00:23:18 +01:00
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
2019-02-17 23:26:07 +01:00
|
|
|
|
(delete 'configure)))) ; no configure script
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("gcc" ,gcc-8))) ; for ‘-fstack-clash-protection’
|
2017-01-05 00:23:18 +01:00
|
|
|
|
(synopsis "Linux command-line utility to control the PC speaker")
|
|
|
|
|
(description "beep allows the user to control the PC speaker with precision,
|
|
|
|
|
allowing different sounds to indicate different events. While it can be run
|
|
|
|
|
quite happily on the command line, its intended place of residence is within
|
|
|
|
|
scripts, notifying the user when something interesting occurs. Of course, it
|
|
|
|
|
has no notion of what's interesing, but it's very good at that notifying part.")
|
2019-02-17 23:26:07 +01:00
|
|
|
|
(home-page "https://github.com/spkr-beep/beep")
|
2017-01-05 00:23:18 +01:00
|
|
|
|
(license license:gpl2+)))
|
2017-01-18 16:34:18 +01:00
|
|
|
|
|
|
|
|
|
(define-public unibilium
|
|
|
|
|
(package
|
|
|
|
|
(name "unibilium")
|
2018-02-09 00:42:10 +01:00
|
|
|
|
(version "1.2.1")
|
2017-01-18 16:34:18 +01:00
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-11-29 06:49:16 +01:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/mauke/unibilium.git")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
2017-01-18 16:34:18 +01:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-11-29 06:49:16 +01:00
|
|
|
|
"11mbfijdrvbmdlmxs8j4vij78ki0vna89yg3r9n9g1i6j45hiq2r"))))
|
2017-01-18 16:34:18 +01:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
;; FIXME: tests require "prove"
|
|
|
|
|
#:tests? #f
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("libtool" ,libtool)))
|
|
|
|
|
(home-page "https://github.com/mauke/unibilium")
|
|
|
|
|
(synopsis "Terminfo parsing library")
|
|
|
|
|
(description "Unibilium is a basic C terminfo library. It doesn't depend
|
|
|
|
|
on curses or any other library. It also doesn't use global variables, so it
|
|
|
|
|
should be thread-safe.")
|
|
|
|
|
(license license:lgpl3+)))
|
2017-01-18 16:34:19 +01:00
|
|
|
|
|
|
|
|
|
(define-public libvterm
|
|
|
|
|
(package
|
|
|
|
|
(name "libvterm")
|
|
|
|
|
(version "0+bzr681")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "http://www.leonerd.org.uk/code/libvterm/"
|
|
|
|
|
"libvterm-" version ".tar.gz"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1s56c8p1qz6frkcri0hg4qyydv2wcccj6n2xmz1dwcdqn38ldsmb"))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:make-flags
|
|
|
|
|
(list "CC=gcc"
|
|
|
|
|
(string-append "PREFIX=" (assoc-ref %outputs "out")))
|
|
|
|
|
#:test-target "test"
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(delete 'configure))))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("libtool" ,libtool)
|
|
|
|
|
("perl" ,perl)))
|
|
|
|
|
(home-page "http://www.leonerd.org.uk/code/libvterm/")
|
|
|
|
|
(synopsis "VT220/xterm/ECMA-48 terminal emulator library")
|
|
|
|
|
(description "Libvterm is an abstract C99 library which implements a VT220
|
|
|
|
|
or xterm-like terminal emulator. It doesn't use any particular graphics
|
|
|
|
|
toolkit or output system, instead it invokes callback function pointers that
|
|
|
|
|
its embedding program should provide it to draw on its behalf. It avoids
|
|
|
|
|
calling @code{malloc} during normal running state, allowing it to be used in
|
|
|
|
|
embedded kernel situations.")
|
|
|
|
|
(license license:expat)))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
|
|
|
|
|
(define-public cool-retro-term
|
2019-02-09 07:45:47 +01:00
|
|
|
|
(let ((commit "1.1.1")
|
|
|
|
|
(revision "0")) ;not used currently
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(package
|
|
|
|
|
(name "cool-retro-term")
|
2019-02-09 07:45:47 +01:00
|
|
|
|
(version "1.1.1")
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(file-name (string-append name "-" version "-checkout"))
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url (string-append "https://github.com/Swordfish90/" name))
|
|
|
|
|
(commit commit)
|
|
|
|
|
(recursive? #t)))
|
|
|
|
|
(sha256
|
2019-02-09 07:45:47 +01:00
|
|
|
|
(base32 "0wb6anchxa5jpn9c73kr4byrf2xlj8x8qzc5x7ny6saj7kbbvp75"))
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(modules '((guix build utils)
|
|
|
|
|
(srfi srfi-1)
|
|
|
|
|
(srfi srfi-26)
|
|
|
|
|
(ice-9 rdelim)
|
|
|
|
|
(ice-9 regex)))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(snippet
|
2018-03-21 06:04:12 +01:00
|
|
|
|
'(let* ((fonts '(;"1971-ibm-3278" ; BSD 3-clause
|
|
|
|
|
"1977-apple2" ; Non-Free
|
|
|
|
|
"1977-commodore-pet" ; Non-Free
|
|
|
|
|
"1979-atari-400-800" ; Non-Free
|
2019-02-09 07:45:47 +01:00
|
|
|
|
;"1981-ibm-pc ; CC-SA 4.0
|
|
|
|
|
"1982-commodore64")) ; Non-Free
|
|
|
|
|
;"1985-ibm-pc-vga" ; CC-SA 4.0
|
2018-03-21 06:04:12 +01:00
|
|
|
|
;"modern-fixedsys-excelsior" ; Redistributable
|
|
|
|
|
;"modern-hermit" ; SIL
|
|
|
|
|
;"modern-inconsolata"; SIL
|
|
|
|
|
;"modern-pro-font-win-tweaked" ; X11
|
|
|
|
|
;"modern-proggy-tiny"; X11
|
|
|
|
|
;"modern-terminus" ; SIL
|
|
|
|
|
(name-rx (make-regexp " *name: *\"([^\"]*)\""))
|
|
|
|
|
(source-rx (make-regexp " *source: \"fonts/([^/]*)[^\"]*\""))
|
|
|
|
|
(fontname-rx (make-regexp "\"fontName\":\"([^\"]*).*"))
|
|
|
|
|
(names
|
|
|
|
|
;; Gather font names from all Fonts*.qml files.
|
|
|
|
|
;; These will be used to remove items from the
|
|
|
|
|
;; default profiles.
|
|
|
|
|
(fold
|
|
|
|
|
(lambda (font-file names)
|
|
|
|
|
(call-with-input-file font-file
|
|
|
|
|
(lambda (port)
|
|
|
|
|
(let loop ((name #f) (names names))
|
|
|
|
|
(let ((line (read-line port)))
|
|
|
|
|
(cond
|
|
|
|
|
((eof-object? line) (pk 'names names))
|
|
|
|
|
((regexp-exec name-rx line)
|
|
|
|
|
=> (lambda (m)
|
|
|
|
|
(loop (match:substring m 1) names)))
|
|
|
|
|
((regexp-exec source-rx line)
|
|
|
|
|
=> (lambda (m)
|
|
|
|
|
(let ((font (match:substring m 1)))
|
|
|
|
|
(if (member font fonts)
|
|
|
|
|
(loop #f (lset-adjoin string=?
|
|
|
|
|
names name))
|
|
|
|
|
(loop #f names)))))
|
|
|
|
|
(else (loop name names))))))))
|
|
|
|
|
'() (find-files "app/qml" "Font.*\\.qml"))))
|
|
|
|
|
;; Remove the font files themselves
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
|
(for-each (lambda (font)
|
|
|
|
|
(delete-file-recursively
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(string-append "app/qml/fonts/" font)))
|
|
|
|
|
fonts)
|
|
|
|
|
;; Remove mention of those fonts in the source
|
|
|
|
|
(substitute* "app/qml/resources.qrc"
|
|
|
|
|
(((string-append " *<file>fonts/("
|
|
|
|
|
(string-join fonts "|")
|
|
|
|
|
").*"))
|
|
|
|
|
""))
|
|
|
|
|
(for-each
|
|
|
|
|
(lambda (file)
|
|
|
|
|
(let ((start-rx (make-regexp " *ListElement\\{"))
|
|
|
|
|
(end-rx (make-regexp " *\\}")))
|
|
|
|
|
(with-atomic-file-replacement file
|
|
|
|
|
(lambda (in out)
|
|
|
|
|
(let loop ((line-buffer '())
|
|
|
|
|
(hold? #f)
|
|
|
|
|
(discard? #f))
|
|
|
|
|
(let ((line (read-line in 'concat)))
|
|
|
|
|
(cond
|
|
|
|
|
((eof-object? line) #t) ;done
|
|
|
|
|
((regexp-exec start-rx line)
|
|
|
|
|
(loop (cons line line-buffer) #t #f))
|
|
|
|
|
((or (regexp-exec source-rx line)
|
|
|
|
|
(regexp-exec fontname-rx line))
|
|
|
|
|
=> (lambda (m)
|
|
|
|
|
(let ((font-or-name (match:substring m 1)))
|
|
|
|
|
(if (or (member font-or-name fonts)
|
|
|
|
|
(member font-or-name names))
|
|
|
|
|
(loop '() #f #t)
|
|
|
|
|
(loop (cons line line-buffer)
|
|
|
|
|
hold? #f)))))
|
|
|
|
|
((regexp-exec end-rx line)
|
|
|
|
|
(unless discard?
|
|
|
|
|
(for-each (cut display <> out)
|
|
|
|
|
(reverse line-buffer))
|
|
|
|
|
(display line out))
|
|
|
|
|
(loop '() #f #f))
|
|
|
|
|
(hold? (loop (cons line line-buffer)
|
|
|
|
|
hold? discard?))
|
|
|
|
|
(discard? (loop line-buffer #f #t))
|
|
|
|
|
(else (display line out)
|
|
|
|
|
(loop '() #f #f)))))))))
|
|
|
|
|
'("app/qml/FontPixels.qml"
|
|
|
|
|
"app/qml/FontScanlines.qml"
|
|
|
|
|
"app/qml/Fonts.qml"
|
|
|
|
|
"app/qml/ApplicationSettings.qml"))
|
|
|
|
|
;; Final substitution for default scanline and pixel fonts
|
|
|
|
|
(substitute* "app/qml/ApplicationSettings.qml"
|
2018-04-21 10:57:29 +02:00
|
|
|
|
(("COMMODORE_PET") "PROGGY_TINY"))
|
gnu: All snippets report errors using exceptions, else return #t.
* gnu/packages/admin.scm, gnu/packages/algebra.scm, gnu/packages/audio.scm,
gnu/packages/backup.scm, gnu/packages/base.scm,
gnu/packages/bioinformatics.scm, gnu/packages/cdrom.scm,
gnu/packages/chez.scm, gnu/packages/code.scm, gnu/packages/compression.scm,
gnu/packages/cross-base.scm, gnu/packages/crypto.scm, gnu/packages/cups.scm,
gnu/packages/databases.scm, gnu/packages/dns.scm, gnu/packages/emacs.scm,
gnu/packages/emulators.scm, gnu/packages/engineering.scm,
gnu/packages/enlightenment.scm, gnu/packages/fpga.scm,
gnu/packages/freedesktop.scm, gnu/packages/ftp.scm, gnu/packages/games.scm,
gnu/packages/gcc.scm, gnu/packages/geo.scm, gnu/packages/ghostscript.scm,
gnu/packages/gl.scm, gnu/packages/glib.scm, gnu/packages/gnome.scm,
gnu/packages/gnuzilla.scm, gnu/packages/graphics.scm, gnu/packages/gtk.scm,
gnu/packages/guile.scm, gnu/packages/irc.scm, gnu/packages/java.scm,
gnu/packages/kerberos.scm, gnu/packages/linux.scm, gnu/packages/lisp.scm,
gnu/packages/lxde.scm, gnu/packages/machine-learning.scm,
gnu/packages/mail.scm, gnu/packages/maths.scm, gnu/packages/messaging.scm,
gnu/packages/monitoring.scm, gnu/packages/mp3.scm, gnu/packages/music.scm,
gnu/packages/netpbm.scm, gnu/packages/networking.scm, gnu/packages/node.scm,
gnu/packages/nvi.scm, gnu/packages/ocaml.scm, gnu/packages/pdf.scm,
gnu/packages/perl.scm, gnu/packages/php.scm, gnu/packages/plotutils.scm,
gnu/packages/pretty-print.scm, gnu/packages/profiling.scm,
gnu/packages/pulseaudio.scm, gnu/packages/python-crypto.scm,
gnu/packages/python.scm, gnu/packages/qt.scm, gnu/packages/robotics.scm,
gnu/packages/sawfish.scm, gnu/packages/scanner.scm, gnu/packages/scheme.scm,
gnu/packages/scribus.scm, gnu/packages/sdl.scm,
gnu/packages/serialization.scm, gnu/packages/shells.scm,
gnu/packages/slang.scm, gnu/packages/smalltalk.scm, gnu/packages/ssh.scm,
gnu/packages/sync.scm, gnu/packages/syncthing.scm, gnu/packages/tbb.scm,
gnu/packages/terminals.scm, gnu/packages/texinfo.scm,
gnu/packages/text-editors.scm, gnu/packages/textutils.scm,
gnu/packages/tls.scm, gnu/packages/unrtf.scm,
gnu/packages/version-control.scm, gnu/packages/video.scm,
gnu/packages/vpn.scm, gnu/packages/web.scm, gnu/packages/wm.scm,
gnu/packages/wxwidgets.scm, gnu/packages/xdisorg.scm, gnu/packages/xorg.scm:
In all snippets, report errors using exceptions, or else return #t.
2018-03-16 12:47:34 +01:00
|
|
|
|
#t))))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("qtbase" ,qtbase)
|
|
|
|
|
("qtdeclarative" ,qtdeclarative)
|
|
|
|
|
("qtgraphicaleffects" ,qtgraphicaleffects)
|
|
|
|
|
("qtquickcontrols" ,qtquickcontrols)))
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'configure
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(let ((out (assoc-ref outputs "out")))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(substitute* '("qmltermwidget/qmltermwidget.pro")
|
|
|
|
|
(("INSTALL_DIR = \\$\\$\\[QT_INSTALL_QML\\]")
|
2017-11-17 02:08:33 +01:00
|
|
|
|
(string-append "INSTALL_DIR = " out "/lib/qt5/qml")))
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(substitute* '("cool-retro-term.pro" "app/app.pro")
|
|
|
|
|
(("/usr") out))
|
|
|
|
|
(invoke "qmake"))))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(add-after 'install 'wrap-executable
|
|
|
|
|
(lambda* (#:key inputs outputs #:allow-other-keys)
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(let ((out (assoc-ref outputs "out"))
|
|
|
|
|
(qml "/lib/qt5/qml"))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(wrap-program (string-append out "/bin/cool-retro-term")
|
|
|
|
|
`("QML2_IMPORT_PATH" ":" prefix
|
|
|
|
|
(,(string-append out qml)
|
2018-03-21 06:04:12 +01:00
|
|
|
|
,@(map (lambda (i)
|
|
|
|
|
(string-append (assoc-ref inputs i) qml))
|
|
|
|
|
'("qtdeclarative"
|
|
|
|
|
"qtgraphicaleffects"
|
|
|
|
|
"qtquickcontrols")))))
|
|
|
|
|
#t)))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(add-after 'install 'add-alternate-name
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(let ((bin (string-append (assoc-ref outputs "out") "/bin")))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(symlink (string-append bin "/cool-retro-term")
|
2019-02-09 07:45:47 +01:00
|
|
|
|
(string-append bin "/crt"))
|
|
|
|
|
#t)))
|
2018-03-21 06:04:12 +01:00
|
|
|
|
(add-after 'install 'install-man
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(let ((mandir (string-append (assoc-ref outputs "out")
|
|
|
|
|
"/share/man/man1")))
|
|
|
|
|
(install-file "packaging/debian/cool-retro-term.1" mandir)
|
|
|
|
|
#t))))))
|
2017-04-23 13:46:41 +02:00
|
|
|
|
(synopsis "Terminal emulator")
|
|
|
|
|
(description
|
|
|
|
|
"Cool-retro-term (crt) is a terminal emulator which mimics the look and
|
|
|
|
|
feel of the old cathode ray tube (CRT) screens. It has been designed to be
|
|
|
|
|
eye-candy, customizable, and reasonably lightweight.")
|
|
|
|
|
(home-page "https://github.com/Swordfish90/cool-retro-term")
|
|
|
|
|
(license (list
|
|
|
|
|
license:gpl2+ ; qmltermwidget
|
|
|
|
|
license:gpl3+ ; cool-retro-term
|
|
|
|
|
;; Fonts
|
|
|
|
|
license:silofl1.1
|
|
|
|
|
license:x11
|
|
|
|
|
license:bsd-3)))))
|
2017-10-30 18:47:50 +01:00
|
|
|
|
|
|
|
|
|
(define-public sakura
|
|
|
|
|
(package
|
|
|
|
|
(name "sakura")
|
2018-05-31 02:40:45 +02:00
|
|
|
|
(version "3.6.0")
|
2017-10-30 18:47:50 +01:00
|
|
|
|
(source (origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (string-append "https://launchpad.net/" name "/trunk/"
|
|
|
|
|
version "/+download/" name "-" version
|
|
|
|
|
".tar.bz2"))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-05-31 02:40:45 +02:00
|
|
|
|
"1q463qm41ym7jb3kbzjz7b6x549vmgkb70arpkhsf86yxly1y5m1"))))
|
2017-10-30 18:47:50 +01:00
|
|
|
|
(build-system cmake-build-system)
|
|
|
|
|
(arguments
|
2018-05-31 02:40:45 +02:00
|
|
|
|
'(#:tests? #f)) ; no check phase
|
2017-10-30 18:47:50 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("gettext" ,gettext-minimal)
|
2018-05-31 02:40:45 +02:00
|
|
|
|
("perl" ,perl) ; for pod2man
|
2017-10-30 18:47:50 +01:00
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libxft" ,libxft)
|
|
|
|
|
("vte" ,vte)))
|
|
|
|
|
(home-page "https://launchpad.net/sakura")
|
|
|
|
|
(synopsis "A simple but powerful libvte-based terminal emulator")
|
|
|
|
|
(description "@code{Sakura} is a terminal emulator based on GTK+ and VTE.
|
|
|
|
|
It's a terminal emulator with few dependencies, so you don't need a full GNOME
|
|
|
|
|
desktop installed to have a decent terminal emulator.")
|
|
|
|
|
(license license:gpl2)))
|
2018-01-21 11:41:37 +01:00
|
|
|
|
|
2018-01-21 11:54:14 +01:00
|
|
|
|
(define-public go-github.com-nsf-termbox-go
|
|
|
|
|
(let ((commit "4ed959e0540971545eddb8c75514973d670cf739")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "go-github.com-nsf-termbox-go")
|
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/nsf/termbox-go.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1vx64i1mg660if3wwm81p4b7lzxfb3qbr39i7misdyld3fc486p9"))))
|
|
|
|
|
(build-system go-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:import-path "github.com/nsf/termbox-go"))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("go-github.com-mattn-go-runewidth"
|
|
|
|
|
,go-github.com-mattn-go-runewidth)))
|
|
|
|
|
(synopsis "@code{termbox} provides a minimal API for text-based user
|
|
|
|
|
interfaces")
|
|
|
|
|
(description
|
|
|
|
|
"Termbox is a library that provides a minimalistic API which allows the
|
|
|
|
|
programmer to write text-based user interfaces.")
|
|
|
|
|
(home-page "https://github.com/nsf/termbox-go")
|
|
|
|
|
(license license:expat))))
|
|
|
|
|
|
2018-01-21 11:41:37 +01:00
|
|
|
|
(define-public go-golang.org-x-crypto-ssh-terminal
|
|
|
|
|
(let ((commit "c78caca803c95773f48a844d3dcab04b9bc4d6dd")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "go-golang.org-x-crypto-ssh-terminal")
|
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://go.googlesource.com/crypto")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"0vxlfxr9y681yn2cfh6dbqmq35vvq4f45ay0mm31ffkny9cms0y4"))))
|
|
|
|
|
(build-system go-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:import-path "golang.org/x/crypto/ssh/terminal"
|
|
|
|
|
#:unpack-path "golang.org/x/crypto"
|
|
|
|
|
#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-before 'reset-gzip-timestamps 'make-gzip-archive-writable
|
|
|
|
|
(lambda* (#:key outputs #:allow-other-keys)
|
|
|
|
|
(map (lambda (file)
|
|
|
|
|
(make-file-writable file))
|
|
|
|
|
(find-files
|
|
|
|
|
(string-append (assoc-ref outputs "out")
|
|
|
|
|
"/src/golang.org/x/crypto/ed25519/testdata")
|
|
|
|
|
".*\\.gz$"))
|
|
|
|
|
#t)))))
|
|
|
|
|
(synopsis "Support functions for dealing with terminals in Go")
|
|
|
|
|
(description "@code{terminal} provides support functions for dealing
|
|
|
|
|
with terminals in Go.")
|
|
|
|
|
(home-page "https://go.googlesource.com/crypto/")
|
|
|
|
|
(license license:bsd-3))))
|
2018-01-21 11:42:14 +01:00
|
|
|
|
|
|
|
|
|
(define-public go-github.com-howeyc-gopass
|
|
|
|
|
(let ((commit "bf9dde6d0d2c004a008c27aaee91170c786f6db8")
|
|
|
|
|
(revision "0"))
|
|
|
|
|
(package
|
|
|
|
|
(name "go-github.com-howeyc-gopass")
|
|
|
|
|
(version (git-version "0.0.0" revision commit))
|
|
|
|
|
(source (origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/howeyc/gopass.git")
|
|
|
|
|
(commit commit)))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1jxzyfnqi0h1fzlsvlkn10bncic803bfhslyijcxk55mgh297g45"))))
|
|
|
|
|
(build-system go-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:import-path "github.com/howeyc/gopass"))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("go-golang.org-x-crypto-ssh-terminal"
|
|
|
|
|
,go-golang.org-x-crypto-ssh-terminal)))
|
|
|
|
|
(synopsis "Retrieve password from a terminal or piped input in Go")
|
|
|
|
|
(description
|
|
|
|
|
"@code{gopass} is a Go package for retrieving a password from user
|
|
|
|
|
terminal or piped input.")
|
|
|
|
|
(home-page "https://github.com/howeyc/gopass")
|
|
|
|
|
(license license:isc))))
|
2018-02-03 20:44:13 +01:00
|
|
|
|
|
|
|
|
|
(define-public python-pyte
|
|
|
|
|
(package
|
|
|
|
|
(name "python-pyte")
|
|
|
|
|
(version "0.7.0")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "pyte" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1an54hvyjm8gncx8cgabz9mkpgjkdb0bkyjlkh7g7f94nr3wnfl7"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(add-after 'unpack 'remove-failing-test
|
|
|
|
|
;; TODO: Reenable when the `captured` files required by this test
|
|
|
|
|
;; are included in the archive.
|
|
|
|
|
(lambda _
|
|
|
|
|
(delete-file "tests/test_input_output.py")
|
|
|
|
|
#t)))))
|
|
|
|
|
(propagated-inputs
|
2018-03-16 16:50:14 +01:00
|
|
|
|
`(("python-wcwidth" ,python-wcwidth)))
|
2018-02-03 20:44:13 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-pytest-runner" ,python-pytest-runner)
|
|
|
|
|
("python-pytest" ,python-pytest)))
|
|
|
|
|
(home-page "https://pyte.readthedocs.io/")
|
|
|
|
|
(synopsis "Simple VTXXX-compatible terminal emulator")
|
|
|
|
|
(description "@code{pyte} is an in-memory VTxxx-compatible terminal
|
|
|
|
|
emulator. @var{VTxxx} stands for a series of video terminals, developed by
|
|
|
|
|
DEC between 1970 and 1995. The first and probably most famous one was the
|
|
|
|
|
VT100 terminal, which is now a de-facto standard for all virtual terminal
|
|
|
|
|
emulators.
|
|
|
|
|
|
|
|
|
|
pyte is a fork of vt102, which was an incomplete pure Python implementation
|
|
|
|
|
of VT100 terminal.")
|
|
|
|
|
(license license:lgpl3+)))
|
|
|
|
|
|
|
|
|
|
(define-public python2-pyte
|
|
|
|
|
(package-with-python2 python-pyte))
|
2016-12-31 14:59:36 +01:00
|
|
|
|
|
|
|
|
|
(define-public python-blessings
|
|
|
|
|
(package
|
|
|
|
|
(name "python-blessings")
|
|
|
|
|
(version "1.6.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "blessings" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1smngy65p8mi62lgm04icasx22v976szhs2aq95y2ljmi1srb4bl"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
;; TODO: For py3, 2to2 is used to convert the code, but test-suite fails
|
|
|
|
|
`(#:tests? #f))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-nose" ,python-nose)))
|
|
|
|
|
(home-page "https://github.com/erikrose/blessings")
|
|
|
|
|
(synopsis "Python module to manage terminal color, styling, and
|
|
|
|
|
positioning")
|
|
|
|
|
(description "Blessings is a pythonic API to manipulate terminal color,
|
|
|
|
|
styling, and positioning. It provides similar features to curses but avoids
|
|
|
|
|
some of curses’s limitations: it does not require clearing the whole screen
|
|
|
|
|
for little changes, provides a scroll-back buffer after the program exits, and
|
|
|
|
|
avoids styling altogether when the output is redirected to something other
|
|
|
|
|
than a terminal.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
|
|
|
|
(define-public python2-blessings
|
|
|
|
|
(package-with-python2 python-blessings))
|
2016-12-31 15:00:35 +01:00
|
|
|
|
|
|
|
|
|
(define-public python-curtsies
|
|
|
|
|
(package
|
|
|
|
|
(name "python-curtsies")
|
|
|
|
|
(version "0.2.11")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method url-fetch)
|
|
|
|
|
(uri (pypi-uri "curtsies" version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
|
|
|
|
"1vljmw3sy6lrqahhpyg4gk13mzcx3mwhvg8s41698ms3cpgkjipc"))))
|
|
|
|
|
(build-system python-build-system)
|
|
|
|
|
(arguments
|
|
|
|
|
`(#:phases
|
|
|
|
|
(modify-phases %standard-phases
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "nosetests" "-v"))))))
|
|
|
|
|
(propagated-inputs
|
|
|
|
|
`(("python-blessings" ,python-blessings)
|
2018-03-16 16:50:14 +01:00
|
|
|
|
("python-wcwidth" ,python-wcwidth)))
|
2016-12-31 15:00:35 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("python-mock" ,python-mock)
|
|
|
|
|
("python-pyte" ,python-pyte)
|
|
|
|
|
("python-nose" ,python-nose)))
|
|
|
|
|
(home-page "https://github.com/thomasballinger/curtsies")
|
|
|
|
|
(synopsis "Library for curses-like terminal interaction with colored
|
|
|
|
|
strings")
|
|
|
|
|
(description "Curtsies is a Python library for interacting with the
|
|
|
|
|
terminal. It features string-like objects which carry formatting information,
|
|
|
|
|
per-line fullscreen terminal rendering, and keyboard input event reporting.")
|
|
|
|
|
(license license:expat)))
|
|
|
|
|
|
|
|
|
|
(define-public python2-curtsies
|
|
|
|
|
(package-with-python2 python-curtsies))
|
2018-06-13 09:56:15 +02:00
|
|
|
|
|
|
|
|
|
(define-public tmate
|
|
|
|
|
(package
|
|
|
|
|
(name "tmate")
|
|
|
|
|
(version "2.2.1")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
2018-11-29 22:17:22 +01:00
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/tmate-io/tmate.git")
|
|
|
|
|
(commit version)))
|
|
|
|
|
(file-name (git-file-name name version))
|
2018-06-13 09:56:15 +02:00
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2018-11-29 22:17:22 +01:00
|
|
|
|
"0pfl9vrswzim9ydi1n652h3rax2zrmy6sqkp0r09yy3lw83h4y1r"))))
|
2018-06-13 09:56:15 +02:00
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("libevent" ,libevent)
|
|
|
|
|
("libssh" ,libssh)
|
|
|
|
|
("msgpack" ,msgpack)
|
|
|
|
|
("ncurses" ,ncurses)))
|
|
|
|
|
(native-inputs
|
|
|
|
|
`(("autoconf" ,autoconf)
|
|
|
|
|
("automake" ,automake)
|
|
|
|
|
("pkg-config" ,pkg-config)))
|
|
|
|
|
(home-page "https://tmate.io/")
|
|
|
|
|
(synopsis "Terminal sharing application")
|
|
|
|
|
(description "tmate is a terminal sharing application that allows you to
|
|
|
|
|
share your terminal with other users over the Internet. tmate is a fork of
|
|
|
|
|
tmux.")
|
|
|
|
|
(license license:isc)))
|
2018-12-26 12:41:58 +01:00
|
|
|
|
|
|
|
|
|
(define-public kitty
|
|
|
|
|
(package
|
|
|
|
|
(name "kitty")
|
2019-01-29 10:05:00 +01:00
|
|
|
|
(version "0.13.3")
|
2018-12-26 12:41:58 +01:00
|
|
|
|
(home-page "https://sw.kovidgoyal.net/kitty/")
|
|
|
|
|
(source
|
|
|
|
|
(origin
|
|
|
|
|
(method git-fetch)
|
|
|
|
|
(uri (git-reference
|
|
|
|
|
(url "https://github.com/kovidgoyal/kitty.git")
|
|
|
|
|
(commit (string-append "v" version))))
|
|
|
|
|
(file-name (git-file-name name version))
|
|
|
|
|
(sha256
|
|
|
|
|
(base32
|
2019-01-29 10:05:00 +01:00
|
|
|
|
"1y0vd75j8g61jdj8miml79w5ri3pqli5rv9iq6zdrxvzfa4b2rmb"))
|
2018-12-26 12:41:58 +01:00
|
|
|
|
(modules '((guix build utils)))
|
|
|
|
|
(snippet
|
|
|
|
|
'(begin
|
|
|
|
|
;; patch needed as sphinx-build is used as a python script
|
|
|
|
|
;; whereas the guix package uses a bash script launching the
|
|
|
|
|
;; python script
|
|
|
|
|
(substitute* "docs/conf.py"
|
|
|
|
|
(("(from kitty.constants import str_version)" kitty-imp)
|
|
|
|
|
(string-append "sys.path.append(\"..\")\n" kitty-imp)))
|
|
|
|
|
(substitute* "docs/Makefile"
|
|
|
|
|
(("^SPHINXBUILD[[:space:]]+= (python3.*)$")
|
|
|
|
|
"SPHINXBUILD = sphinx-build\n"))
|
|
|
|
|
#t))))
|
|
|
|
|
(build-system gnu-build-system)
|
|
|
|
|
(inputs
|
|
|
|
|
`(("python" ,python)
|
|
|
|
|
("harfbuzz" ,harfbuzz)
|
|
|
|
|
("zlib" ,zlib)
|
|
|
|
|
("libpng" ,libpng)
|
|
|
|
|
("freetype" ,freetype)
|
|
|
|
|
("fontconfig" ,fontconfig)
|
2019-01-29 10:05:00 +01:00
|
|
|
|
("pygments" ,python-pygments)
|
|
|
|
|
("wayland" ,wayland)))
|
2018-12-26 12:41:58 +01:00
|
|
|
|
(native-inputs
|
|
|
|
|
`(("pkg-config" ,pkg-config)
|
|
|
|
|
("libxrandr" ,libxrandr)
|
|
|
|
|
("libdbus" ,dbus)
|
|
|
|
|
("libxcursor" ,libxcursor)
|
|
|
|
|
("libxi" ,libxi)
|
|
|
|
|
("libxinerama" ,libxinerama)
|
|
|
|
|
("libgl1-mesa" ,mesa)
|
|
|
|
|
("libxkbcommon" ,libxkbcommon)
|
|
|
|
|
("sphinx" ,python-sphinx)
|
|
|
|
|
("ncurses" ,ncurses) ;; for tic command
|
|
|
|
|
("wayland-protocols" ,wayland-protocols)))
|
|
|
|
|
(arguments
|
|
|
|
|
'(#:phases (modify-phases %standard-phases
|
|
|
|
|
(delete 'configure)
|
2019-01-29 10:05:00 +01:00
|
|
|
|
;; Wayland backend requires EGL, which isn't found
|
|
|
|
|
;; out-of-the-box for some reason. Hard-code it instead.
|
|
|
|
|
(add-after 'unpack 'hard-code-libegl
|
|
|
|
|
(lambda _
|
|
|
|
|
(let* ((mesa (assoc-ref %build-inputs "libgl1-mesa"))
|
|
|
|
|
(libegl (string-append mesa "/lib/libEGL.so.1")))
|
|
|
|
|
(substitute* "glfw/egl_context.c"
|
|
|
|
|
(("libEGL.so.1") libegl)))
|
|
|
|
|
#t))
|
2018-12-26 12:41:58 +01:00
|
|
|
|
(replace 'build
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "python3" "setup.py" "linux-package")))
|
|
|
|
|
(replace 'check
|
|
|
|
|
(lambda _
|
|
|
|
|
(invoke "python3" "setup.py" "test")))
|
|
|
|
|
(add-before 'install 'rm-pycache
|
|
|
|
|
;; created python cache __pycache__ are non deterministic
|
|
|
|
|
(lambda _
|
|
|
|
|
(let ((pycaches (find-files "linux-package/"
|
|
|
|
|
"__pycache__"
|
|
|
|
|
#:directories? #t)))
|
|
|
|
|
(for-each delete-file-recursively pycaches)
|
|
|
|
|
#t)))
|
|
|
|
|
(replace 'install
|
|
|
|
|
(lambda _
|
|
|
|
|
(let* ((out (assoc-ref %outputs "out"))
|
|
|
|
|
(obin (string-append out "/bin"))
|
|
|
|
|
(olib (string-append out "/lib"))
|
|
|
|
|
(oshare (string-append out "/share")))
|
|
|
|
|
(copy-recursively "linux-package/bin" obin)
|
|
|
|
|
(copy-recursively "linux-package/share" oshare)
|
|
|
|
|
(copy-recursively "linux-package/lib" olib)
|
|
|
|
|
#t))))))
|
|
|
|
|
(synopsis "Fast, featureful, GPU based terminal emulator")
|
|
|
|
|
(description "Kitty is a fast and featureful GPU-based terminal emulator:
|
|
|
|
|
@itemize
|
|
|
|
|
@item Offloads rendering to the GPU for lower system load and buttery smooth
|
|
|
|
|
scrolling. Uses threaded rendering to minimize input latency.
|
|
|
|
|
@item Supports all modern terminal features: graphics (images), unicode,
|
|
|
|
|
true-color, OpenType ligatures, mouse protocol, focus tracking, bracketed
|
|
|
|
|
paste and several new terminal protocol extensions.
|
|
|
|
|
@item Supports tiling multiple terminal windows side by side in different
|
|
|
|
|
layouts without needing to use an extra program like tmux.
|
|
|
|
|
@item Can be controlled from scripts or the shell prompt, even over SSH.
|
|
|
|
|
@item Has a framework for Kittens, small terminal programs that can be used to
|
|
|
|
|
extend kitty's functionality. For example, they are used for Unicode input,
|
|
|
|
|
hints, and side-by-side diff.
|
|
|
|
|
@item Supports startup sessions which allow you to specify the window/tab
|
|
|
|
|
layout, working directories and programs to run on startup.
|
|
|
|
|
@item Allows you to open the scrollback buffer in a separate window using
|
|
|
|
|
arbitrary programs of your choice. This is useful for browsing the history
|
|
|
|
|
comfortably in a pager or editor.
|
|
|
|
|
@end itemize")
|
|
|
|
|
(license license:gpl3+)))
|