diff options
author | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 19:03:26 +0300 |
---|---|---|
committer | Oleg Pykhalov <go.wigust@gmail.com> | 2018-05-02 20:17:12 +0300 |
commit | 4cdfc9ef94f7e87b544741b3c4aee6499d69c01e (patch) | |
tree | 8b528288a7aa20769fc798427348e6cc81f3a8ba /gnu | |
parent | 295513c618edcbab888da67057bcd629bb74c630 (diff) |
gnu: Add emacs-hy-mode.
* gnu/packages/emacs.scm (emacs-hy-mode): New public variable.
Diffstat (limited to 'gnu')
-rw-r--r-- | gnu/packages/emacs.scm | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 1419b99092..c206cb2eba 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+))) |