guix-commits
[Top][All Lists]
Advanced

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

33/88: gnu: Add emacs-parent-mode.


From: Oleg Pykhalov
Subject: 33/88: gnu: Add emacs-parent-mode.
Date: Wed, 2 May 2018 13:21:10 -0400 (EDT)

wigust pushed a commit to branch master
in repository guix.

commit 02999382a297911a77d0588e14ffb09de8af0ad2
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:01:14 2018 +0300

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index ffa12c0..ed4b9e9 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -8854,3 +8854,22 @@ useful for debugging macros that expand into another 
macro form.  These can be
 difficult to debug with Emacs’ built-in macroexpand, which continues expansion
 until the top-level form is no longer a macro call.")
       (license license:gpl3+))))
+
+(define-public emacs-parent-mode
+  (package
+    (name "emacs-parent-mode")
+    (version "2.3")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/Fanael/parent-mode/archive/";
+                           version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0gxbl5s1w96v6v55b7aaansgw4sxhzfx9nrsvpk3pfhsibs6yqjd"))))
+    (build-system emacs-build-system)
+    (home-page "https://github.com/Fanael/parent-mode";)
+    (synopsis "Get major mode's parent modes")
+    (description "Get major mode's parent modes")
+    (license license:gpl3+)))



reply via email to

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