diff options
| author | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-20 21:02:22 +0300 |
|---|---|---|
| committer | Oleg Pykhalov <go.wigust@gmail.com> | 2017-10-20 21:02:22 +0300 |
| commit | 52df5ef6e5290632fe41fbb45d73a47e1f34231f (patch) | |
| tree | 1afcb1d0edaf9a203b3f86e2edc3515b21dcdca6 | |
| parent | wigust: Add emacs-sml-mode. (diff) | |
| download | guix-wigust-52df5ef6e5290632fe41fbb45d73a47e1f34231f.tar.gz | |
wigust: Add emacs-hy-mode.
* wigust/packages/emacs.scm (emacs-hy-mode): New variable.
| -rw-r--r-- | wigust/packages/emacs.scm | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/wigust/packages/emacs.scm b/wigust/packages/emacs.scm index 1e7e3c9..6e9d244 100644 --- a/wigust/packages/emacs.scm +++ b/wigust/packages/emacs.scm @@ -1582,3 +1582,24 @@ It provides syntax highlighting and automatic indentation and comes with sml-proc which allows interaction with an inferior SML interactive loop.") (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")) + (sha256 + (base32 + "0sbga36zkyhzrzcczsyjzll7b9qsa215pnlw51m4li2irm23jh17")))) + (build-system emacs-build-system) + (propagated-inputs + `(("emacs-dash" ,emacs-dash) + ("emacs-s" ,emacs-s))) + (home-page "http://github.com/hylang/hy-mode") + (synopsis "Major mode for Hylang") + (description "Major mode for Hylang") + (license license:gpl3+))) |
