From mboxrd@z Thu Jan 1 00:00:00 1970 From: David Thompson Subject: [PATCH 03/10] gnu: Add emacs-markdown-mode. Date: Wed, 1 Jun 2016 10:05:31 -0400 Message-ID: <20160601140538.20311-3-dthompson2@worcester.edu> References: <20160601140538.20311-1-dthompson2@worcester.edu> Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:38133) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n6-0007QU-DW for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:37 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b86n1-0004f9-8X for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:35 -0400 Received: from mail-qg0-x229.google.com ([2607:f8b0:400d:c04::229]:32856) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b86n1-0004ep-4a for guix-devel@gnu.org; Wed, 01 Jun 2016 10:06:31 -0400 Received: by mail-qg0-x229.google.com with SMTP id 52so43131026qgy.0 for ; Wed, 01 Jun 2016 07:06:31 -0700 (PDT) In-Reply-To: <20160601140538.20311-1-dthompson2@worcester.edu> 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: guix-devel@gnu.org Cc: David Thompson From: David Thompson * gnu/packages/emacs.scm (emacs-markdown-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 cad843c..cd64383 100644 --- a/gnu/packages/emacs.scm +++ b/gnu/packages/emacs.scm @@ -1840,3 +1840,24 @@ highlighting using a recursive-descent parser, on-the-fly reporting of syntax errors and strict-mode warnings, smart line-wrapping within comments and strings, and code folding.") (license license:gpl3+))) + +(define-public emacs-markdown-mode + (package + (name "emacs-markdown-mode") + (version "2.1") + (source (origin + (method url-fetch) + (uri (string-append "https://raw.githubusercontent.com/jrblevin" + "/markdown-mode/v" version + "/markdown-mode.el")) + (file-name (string-append "markdown-mode-" version ".el")) + (sha256 + (base32 + "1faibar32jnjia9202swblw91q6z1g5s4k9xmypwjahfh8yznl6w")))) + (build-system emacs-build-system) + (home-page "http://jblevins.org/projects/markdown-mode/") + (synopsis "Emacs Major mode for Markdown files") + (description + "Markdown-mode is a major mode for editing Markdown-formatted text files +in Emacs.") + (license license:gpl3+))) -- 2.8.3