guix-commits
[Top][All Lists]
Advanced

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

05/09: gnu: Add emacs-linum-relative.


From: Ludovic Courtès
Subject: 05/09: gnu: Add emacs-linum-relative.
Date: Thu, 30 Mar 2017 05:15:25 -0400 (EDT)

civodul pushed a commit to branch master
in repository guix.

commit c86c19914a2a892f57d0c601e2f1c4f86f64a7a4
Author: Arun Isaac <address@hidden>
Date:   Wed Mar 29 12:40:04 2017 +0530

    gnu: Add emacs-linum-relative.
    
    * gnu/packages/emacs.scm (emacs-linum-relative): New variable.
    
    Signed-off-by: Ludovic Courtès <address@hidden>
---
 gnu/packages/emacs.scm | 21 +++++++++++++++++++++
 1 file changed, 21 insertions(+)

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 4e2d256..cb2792f 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -3963,6 +3963,27 @@ abbreviation and automatically expand it into function 
templates.")
 memoizing functions.")
    (license license:unlicense)))
 
+(define-public emacs-linum-relative
+  (package
+    (name "emacs-linum-relative")
+    (version "0.5")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append
+             "https://github.com/coldnew/linum-relative/archive/";
+             version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0s4frvr27866lw1rn3jal9wj5rkz9fx4yiszqv7w06azsdgsqksv"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/coldnew/linum-relative";)
+    (synopsis "Relative line numbering for Emacs")
+    (description "@code{emacs-linum-relative} displays the relative line
+number on the left margin in Emacs.")
+    (license license:gpl2+)))
+
 (define-public emacs-idle-highlight
   (package
     (name "emacs-idle-highlight")



reply via email to

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