From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:42706) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cybNC-0007Op-IF for guix-patches@gnu.org; Thu, 13 Apr 2017 05:49:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cybN8-0002kI-M2 for guix-patches@gnu.org; Thu, 13 Apr 2017 05:49:06 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:46869) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cybN8-0002kE-IA for guix-patches@gnu.org; Thu, 13 Apr 2017 05:49:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cybN8-0000fK-C3 for guix-patches@gnu.org; Thu, 13 Apr 2017 05:49:02 -0400 Subject: bug#26474: [PATCH] gnu: Add emacs-cdlatex. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:42257) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <9edf2fd3.AEAAI_1BdgwAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY70lB@bnc3.mailjet.com>) id 1cybM2-0006aa-Q9 for guix-patches@gnu.org; Thu, 13 Apr 2017 05:47:59 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <9edf2fd3.AEAAI_1BdgwAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY70lB@bnc3.mailjet.com>) id 1cybLy-0002JL-Ik for guix-patches@gnu.org; Thu, 13 Apr 2017 05:47:54 -0400 Received: from o147.p9.mailjet.com ([87.253.234.147]:36454) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <9edf2fd3.AEAAI_1BdgwAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY70lB@bnc3.mailjet.com>) id 1cybLy-0002J6-9x for guix-patches@gnu.org; Thu, 13 Apr 2017 05:47:50 -0400 Message-Id: <9edf2fd3.AEAAI_1BdgwAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY70lB@mailjet.com> From: Arun Isaac Date: Thu, 13 Apr 2017 15:17:20 +0530 MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable 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: 26474@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-cdlatex): New variable. --- gnu/packages/emacs.scm | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 65a491302..68257387d 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4323,3 +4323,28 @@ Emacs Lisp") (description "@code{emacs-xmlgen} provides S-expression to XML conversion for Emacs Lisp.") (license license:gpl2+))) + +(define-public emacs-cdlatex + (package + (name "emacs-cdlatex") + (version "4.7") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/cdominik/cdlatex/archive/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "0pivapphmykc6vhvpx7hdyl55ls37vc4jcrxpvs4yk7jzcmwa9xp")))) + (build-system emacs-build-system) + (home-page "https://github.com/cdominik/cdlatex") + (synopsis "Fast Emacs input methods for LaTeX environments and +math") + (description "CDLaTeX is an Emacs minor mode supporting fast +insertion of environment templates and math in LaTeX. Similar +commands are also offered as part of the AUCTeX package, but it is not +the same - CDLaTeX focuses on speediness for inserting LaTeX +constructs.") + (license license:gpl3+))) --=20 2.12.2 =