From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:50815) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1esa9x-0004gz-OH for guix-patches@gnu.org; Sun, 04 Mar 2018 15:23:06 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1esa9u-0003jL-L2 for guix-patches@gnu.org; Sun, 04 Mar 2018 15:23:05 -0500 Received: from debbugs.gnu.org ([208.118.235.43]:36844) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1esa9u-0003jA-Gz for guix-patches@gnu.org; Sun, 04 Mar 2018 15:23:02 -0500 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1esa9u-00065L-A1 for guix-patches@gnu.org; Sun, 04 Mar 2018 15:23:02 -0500 Subject: [bug#30698] [PATCH 1/2] gnu: Add emacs-hcl-mode. Resent-Message-ID: From: Alex Kost References: <877eqrrdom.fsf@cbaines.net> <20180304165051.14024-1-mail@cbaines.net> Date: Sun, 04 Mar 2018 23:22:20 +0300 In-Reply-To: <20180304165051.14024-1-mail@cbaines.net> (Christopher Baines's message of "Sun, 4 Mar 2018 16:50:50 +0000") Message-ID: <877eqreglf.fsf@gmail.com> MIME-Version: 1.0 Content-Type: text/plain List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-patches-bounces+kyle=kyleam.com@gnu.org Sender: "Guix-patches" To: Christopher Baines Cc: 30698@debbugs.gnu.org Christopher Baines (2018-03-04 16:50 +0000) wrote: > * gnu/packages/emacs.scm (emacs-hcl-mode): New variable. > --- > gnu/packages/emacs.scm | 23 +++++++++++++++++++++++ > 1 file changed, 23 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 69950cc6d..0e46c71f1 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. ") ^ extra space otherwise, looks good to me, thank you! > + (license license:gpl3+))) -- Alex