From mboxrd@z Thu Jan 1 00:00:00 1970 From: ng0 Subject: Re: [PATCH] gnu: Add emacs-lua-mode. Date: Thu, 20 Oct 2016 16:52:49 +0000 Message-ID: <874m47nese.fsf@we.make.ritual.n0.is> References: <20161020164908.5162-1-davet@gnu.org> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:58856) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bxGaS-0003iQ-UZ for guix-devel@gnu.org; Thu, 20 Oct 2016 12:53:02 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bxGaO-0005Q6-7r for guix-devel@gnu.org; Thu, 20 Oct 2016 12:53:01 -0400 In-Reply-To: <20161020164908.5162-1-davet@gnu.org> List-Id: "Development of GNU Guix and the GNU System distribution." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: guix-devel-bounces+gcggd-guix-devel=m.gmane.org@gnu.org Sender: "Guix-devel" To: David Thompson , guix-devel@gnu.org Cc: David Thompson Hi, We already have lua-mode, what is the difference with this one? http://git.savannah.gnu.org/cgit/guix.git/commit/?id=26e08b4d33918a844a42fd0f859ee640990ca757 David Thompson writes: > * gnu/packages/emacs.scm (emacs-lua-mode): New variable. > --- > gnu/packages/emacs.scm | 21 +++++++++++++++++++++ > 1 file changed, 21 insertions(+) > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 6e9c181..fbde046 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -3252,3 +3252,24 @@ This package contains the library runtime.") > (description "This package provides an Emacs major mode for > editing nginx config files.") > (license license:gpl2+))) > + > +(define-public emacs-lua-mode > + (package > + (name "emacs-lua-mode") > + (version "20151025") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/immerrr/lua-mode/archive/" > + version ".tar.gz")) > + (sha256 > + (base32 > + "0sbhfny5ib65cnx6xcy6h9bbw27mw034s8m9cca00bhxqaqi6p4v")) > + (file-name (string-append name "-" version ".tar.gz")))) > + (build-system emacs-build-system) > + (home-page "http://immerrr.github.com/lua-mode") > + (synopsis "Major mode for editing Lua source code") > + (description "Lua-mode provides support for editing Lua, including automatic > +indentation, syntactical font-locking, running interactive shell, interacting > +with hs-minor-mode and online documentation lookup.") > + (license license:gpl3+))) > -- > 2.8.3 > > >