gnu: Add emacs-itail.

* gnu/packages/emacs.scm (emacs-itail): New public variable.
master
Oleg Pykhalov 2018-05-02 18:58:18 +03:00
parent b12fb29e4d
commit be3cf803da
No known key found for this signature in database
GPG Key ID: 7246E11C69B79569
1 changed files with 26 additions and 0 deletions

View File

@ -8587,3 +8587,29 @@ timestamps and date-time format strings library for Emacs.")
(description "Sequence-manipulation functions that complement basic
functions provided by @file{subr.el}.")
(license license:gpl3+)))
(define-public emacs-itail
(let ((commit "6e43c20da03be3b9c6ece93b7dc3495975ec1888")
(revision "1"))
(package
(name "emacs-itail")
(version (string-append "0.0.1" "-" revision "."
(string-take commit 7)))
(source
(origin
(method git-fetch)
(uri (git-reference
(url "https://github.com/re5et/itail.git")
(commit commit)))
(file-name (string-append name "-" version "-checkout"))
(sha256
(base32
"044nzxh1hq41faxw3lix0wy78vfz304pjcaa5a11dqfz7q3gx5cv"))))
(build-system emacs-build-system)
(home-page "https://github.com/re5et/itail")
(synopsis "Interactive @code{tail} Emacs mode")
(description "@code{itail} provides interactive @code{tail} mode
that allows you to filter the tail with unix pipes and highlight the
contents of the tailed file. Works locally or on remote files using
tramp.")
(license license:gpl3+))))