guix-commits
[Top][All Lists]
Advanced

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

40/88: gnu: Add emacs-hy-mode.


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

wigust pushed a commit to branch master
in repository guix.

commit 4cdfc9ef94f7e87b544741b3c4aee6499d69c01e
Author: Oleg Pykhalov <address@hidden>
Date:   Wed May 2 19:03:26 2018 +0300

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

diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm
index 1419b99..c206cb2 100644
--- a/gnu/packages/emacs.scm
+++ b/gnu/packages/emacs.scm
@@ -9022,3 +9022,25 @@ major or minor mode.
 Hitting @code{RET} enables the mode, @code{C-z} shows the mode
 documentation.")
     (license license:gpl3+)))
+
+(define-public emacs-hy-mode
+  (package
+    (name "emacs-hy-mode")
+    (version "1.0.2")
+    (source
+     (origin
+       (method url-fetch)
+       (uri (string-append "https://github.com/hylang/hy-mode/archive/";
+                           "v" version ".tar.gz"))
+       (file-name (string-append name "-" version ".tar.gz"))
+       (sha256
+        (base32
+         "0sbga36zkyhzrzcczsyjzll7b9qsa215pnlw51m4li2irm23jh17"))))
+    (build-system emacs-build-system)
+    (propagated-inputs
+     `(("emacs-dash" ,emacs-dash)
+       ("emacs-s" ,emacs-s)))
+    (home-page "https://github.com/hylang/hy-mode";)
+    (synopsis "Major mode for Hylang")
+    (description "This package provides a major mode for Hylang.")
+    (license license:gpl3+)))



reply via email to

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