From mboxrd@z Thu Jan 1 00:00:00 1970 From: Alex Kost Subject: Re: [PATCH 15/17] gnu: Add emacs-tagedit. Date: Fri, 15 Jul 2016 17:47:20 +0300 Message-ID: <87a8hjx8jr.fsf@gmail.com> References: <20160712210514.21310-1-rekado@elephly.net> <20160712210514.21310-16-rekado@elephly.net> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:49654) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO4Og-0002Td-U8 for guix-devel@gnu.org; Fri, 15 Jul 2016 10:47:23 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bO4Oc-0002M3-LR for guix-devel@gnu.org; Fri, 15 Jul 2016 10:47:21 -0400 Received: from mail-lf0-x243.google.com ([2a00:1450:4010:c07::243]:34885) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bO4Oc-0002Lo-DR for guix-devel@gnu.org; Fri, 15 Jul 2016 10:47:18 -0400 Received: by mail-lf0-x243.google.com with SMTP id l89so7163890lfi.2 for ; Fri, 15 Jul 2016 07:47:18 -0700 (PDT) In-Reply-To: <20160712210514.21310-16-rekado@elephly.net> (Ricardo Wurmus's message of "Tue, 12 Jul 2016 23:05:12 +0200") 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: Ricardo Wurmus Cc: guix-devel@gnu.org Ricardo Wurmus (2016-07-13 00:05 +0300) wrote: > * gnu/packages/emacs.scm (emacs-tagedit): New variable. > --- > gnu/packages/emacs.scm | 26 ++++++++++++++++++++++++++ > 1 file changed, 26 insertions(+) > > > diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm > index 64192cc..283ed56 100644 > --- a/gnu/packages/emacs.scm > +++ b/gnu/packages/emacs.scm > @@ -1862,6 +1862,32 @@ identifiers in the MIT-Scheme documentation.") > constants and units into an Emacs buffer.") > (license license:gpl2+))) > > +(define-public emacs-tagedit > + (package > + (name "emacs-tagedit") > + (version "1.4.0") > + (source > + (origin > + (method url-fetch) > + (uri (string-append "https://github.com/magnars/tagedit/" > + "archive/" version ".tar.gz")) > + (file-name (string-append name "-" version ".tar.gz")) > + (sha256 > + (base32 > + "1apfnann4qklfdsmdi7icjsj18x7gwx8d83iqr4z25clszz95xfq")))) > + (build-system emacs-build-system) > + (native-inputs > + `(("emacs-espuds" ,emacs-espuds))) The same comment: I think it is not needed. Or do you think it should be added? Why? > + (propagated-inputs > + `(("emacs-s" ,emacs-s) > + ("emacs-dash" ,emacs-dash))) > + (home-page "https://github.com/magnars/tagedit") > + (synopsis "Some paredit-like features for html-mode") > + (description > + "This package provides a collection of paredit-like functions for editing > +in @code{html-mode}.") > + (license license:gpl3+))) > + > (define-public emacs-slime > (package > (name "emacs-slime") -- Alex