From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:33056) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cszIX-0002w5-Uv for guix-patches@gnu.org; Tue, 28 Mar 2017 18:09:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cszIU-0000iP-Nl for guix-patches@gnu.org; Tue, 28 Mar 2017 18:09:05 -0400 Received: from debbugs.gnu.org ([208.118.235.43]:51541) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cszIU-0000iK-Ju for guix-patches@gnu.org; Tue, 28 Mar 2017 18:09:02 -0400 Received: from Debian-debbugs by debbugs.gnu.org with local (Exim 4.84_2) (envelope-from ) id 1cszIU-00089Y-CG for guix-patches@gnu.org; Tue, 28 Mar 2017 18:09:02 -0400 Subject: bug#26288: [PATCH] gnu: Add emacs-ox-twbs. Resent-Message-ID: Received: from eggs.gnu.org ([2001:4830:134:3::10]:32998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cszIA-0002uj-2z for guix-patches@gnu.org; Tue, 28 Mar 2017 18:08:42 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cszI6-0000ff-QU for guix-patches@gnu.org; Tue, 28 Mar 2017 18:08:42 -0400 Received: from nm36-vm7.bullet.mail.ir2.yahoo.com ([212.82.97.139]:40903) by eggs.gnu.org with esmtps (TLS1.0:RSA_ARCFOUR_SHA1:16) (Exim 4.71) (envelope-from ) id 1cszI6-0000fZ-B4 for guix-patches@gnu.org; Tue, 28 Mar 2017 18:08:38 -0400 From: Vasile Dumitrascu Date: Wed, 29 Mar 2017 00:08:30 +0200 Message-Id: <20170328220830.5982-1-va511e@yahoo.com> 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: 26288@debbugs.gnu.org Cc: Vasile Dumitrascu * gnu/packages/emacs.scm (emacs-ox-twbs): New variable. --- gnu/packages/emacs.scm | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/gnu/packages/emacs.scm b/gnu/packages/emacs.scm index 358748cbf..4e2ce53b4 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -3985,3 +3985,27 @@ memoizing functions.") an idle timer to highlight all occurences in the buffer of the word under the point.") (license license:gpl3+))) + +(define-public emacs-ox-twbs + (package + (name "emacs-ox-twbs") + (version "1.1.1") + (source + (origin + (method url-fetch) + (uri (string-append + "https://github.com/marsmining/ox-twbs/archive/v" + version ".tar.gz")) + (file-name (string-append name "-" version ".tar.gz")) + (sha256 + (base32 + "1zaq8dczq5wijjk36114k2x3hfrqig3lyx6djril6wyk67vczyqs")))) + (build-system emacs-build-system) + (home-page "https://github.com/marsmining/ox-twbs") + (synopsis "Export org-mode docs as HTML compatible with Twitter Bootstrap") + (description + "This Emacs package outputs your org-mode docs with a simple, clean +and modern look. It implements a new HTML back-end for exporting org-mode docs +as HTML compatible with Twitter Bootstrap. By default, HTML is exported +with jQuery and Bootstrap resources included via osscdn.") + (license license:gpl3+))) -- 2.11.0