diff options
author | Christopher Baines <mail@cbaines.net> | 2018-01-18 22:37:59 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2018-03-05 07:48:48 +0000 |
commit | dc97f7e20e880f594cf2c9a16b4a1859469b9df5 (patch) | |
tree | 8d4286ca87c0c4fc644d4c5be81a0c34c910e5b4 /gnu/packages/emacs.scm | |
parent | 16718b6776b6cb918cddb3abb3bfcf2405b0b297 (diff) | |
download | guix-dc97f7e20e880f594cf2c9a16b4a1859469b9df5.tar guix-dc97f7e20e880f594cf2c9a16b4a1859469b9df5.tar.gz |
gnu: Add emacs-hcl-mode.
* gnu/packages/emacs.scm (emacs-hcl-mode): New variable.
Diffstat (limited to 'gnu/packages/emacs.scm')
-rw-r--r-- | gnu/packages/emacs.scm | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 69950cc6d7..646aee7ba4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -7313,3 +7313,26 @@ Features: (description "@code{epipe} provides an utility to use your editor in the pipeline, featuring the support for running @code{emacsclient}.") (license license:gpl3+))) + +(define-public emacs-hcl-mode + (package + (name "emacs-hcl-mode") + (version "0.03") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/syohex/emacs-hcl-mode/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0pvw74qpwh0znqzp6syp4wxjqs7dp1hbn5h7xfk97mff9l5d8k6x")))) + (build-system emacs-build-system) + (home-page "https://github.com/syohex/emacs-hcl-mode") + (synopsis "Major mode for the Hashicorp Configuration Language") + (description + "@code{emacs-hcl-mode} provides an Emacs major mode for working with +@acronym{HCL, Hashicorp Configuration Language}. It provides syntax +highlighting and indentation support.") + (license license:gpl3+))) |