From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:40605) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cy0Mf-0002qg-PT for guix-patches@gnu.org; Tue, 11 Apr 2017 14:18:06 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cy0Mc-00017v-Lb for guix-patches@gnu.org; Tue, 11 Apr 2017 14:18:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:45068) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cy0Mc-00017c-Hr for guix-patches@gnu.org; Tue, 11 Apr 2017 14:18:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cy0Mc-0008GI-Ca for guix-patches@gnu.org; Tue, 11 Apr 2017 14:18:02 -0400 Subject: bug#26449: [PATCH] gnu: Add emacs-htmlize. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40542) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from <04cb3d61.ADsAAHKKyUEAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY7R3G@bnc3.mailjet.com>) id 1cy0MP-0002qU-Et for guix-patches@gnu.org; Tue, 11 Apr 2017 14:17:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from <04cb3d61.ADsAAHKKyUEAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY7R3G@bnc3.mailjet.com>) id 1cy0MM-00011Q-AZ for guix-patches@gnu.org; Tue, 11 Apr 2017 14:17:49 -0400 Received: from o168.p9.mailjet.com ([87.253.234.168]:34233) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from <04cb3d61.ADsAAHKKyUEAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY7R3G@bnc3.mailjet.com>) id 1cy0MM-00010s-2U for guix-patches@gnu.org; Tue, 11 Apr 2017 14:17:46 -0400 Message-Id: <04cb3d61.ADsAAHKKyUEAAAAAAAAAAAOtUOAAAAACwQwAAAAAAAW9WABY7R3G@mailjet.com> From: Arun Isaac Date: Tue, 11 Apr 2017 23:47:22 +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: 26449@debbugs.gnu.org * gnu/packages/emacs.scm (emacs-htmlize): New variable. --- gnu/packages/emacs.scm | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index a70fb2167..06bb432f4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -4235,3 +4235,25 @@ sign messages that you send. For details and instru= ctions on how to use DefaultEncrypt, please refer to the home page or read the comments in the source file, @file{jl-encrypt.el}.") (license license:gpl3+))) + +(define-public emacs-htmlize + (package + (name "emacs-htmlize") + (version "1.51") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/hniksic/emacs-htmlize/archive/release/" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1fy1lybzrxl8a8r88f6p19nz8ygmvcxhxbnymkxh7jqaz25viwld")))) + (build-system emacs-build-system) + (home-page "https://github.com/hniksic/emacs-htmlize") + (synopsis "Convert buffer text and decorations to HTML") + (description "@code{emacs-htmlize} converts the buffer text and +the associated decorations to HTML. Output to CSS, inline CSS and +fonts is supported.") + (license license:gpl2+))) --=20 2.12.2 =