guix-commits
[Top][All Lists]
Advanced

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

23/88: gnu: Add emacs-itail.


From: Oleg Pykhalov
Subject: 23/88: gnu: Add emacs-itail.
Date: Wed, 2 May 2018 13:21:08 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit be3cf803da25efcc6a943e6a4a693bcd6dced2eb
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 18:58:18 2018 +0300

    gnu: Add emacs-itail.
    
    * gnu/packages/emacs.scm (emacs-itail): New public variable.
---
 gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++
 1 file changed, 26 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index f948bec..77f003c 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -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+))))



reply via email to

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