all messages for Guix-related lists mirrored at yhetil.org
 help / color / mirror / code / Atom feed
From: Leo Famulari <leo@famulari.name>
To: guix-devel@gnu.org
Subject: [PATCH 1/1] gnu: Add peg-markdown.
Date: Sat, 28 Nov 2015 15:26:21 -0500	[thread overview]
Message-ID: <ad1a53c35d1355c52c15abac1f80665580b7b3da.1448742347.git.leo@famulari.name> (raw)
In-Reply-To: <cover.1448742347.git.leo@famulari.name>
In-Reply-To: <cover.1448742347.git.leo@famulari.name>

* gnu/packages/markdown.scm (peg-markdown): New variable.
---
 gnu/packages/markdown.scm | 59 +++++++++++++++++++++++++++++++++++++++++++++++
 1 file changed, 59 insertions(+)

diff --git a/gnu/packages/markdown.scm b/gnu/packages/markdown.scm
index a20eef6..d417420 100644
--- a/gnu/packages/markdown.scm
+++ b/gnu/packages/markdown.scm
@@ -23,8 +23,11 @@
   #:use-module (guix packages)
   #:use-module (guix build-system gnu)
   #:use-module (guix build-system trivial)
+  #:use-module (gnu packages glib)
   #:use-module (gnu packages perl)
+  #:use-module (gnu packages pkg-config)
   #:use-module (gnu packages python)
+  #:use-module (gnu packages valgrind)
   #:use-module (gnu packages web)
   #:use-module (gnu packages zip))
 
@@ -98,3 +101,59 @@ you to write using an easy-to-read, easy-to-write plain text format, then
 convert it to structurally valid XHTML (or HTML).")
     (license (non-copyleft "file://License.text"
                            "See License.text in the distribution."))))
+
+(define-public peg-markdown
+  (package
+    (name "peg-markdown")
+    (version "0.4.14")
+    (source (origin
+             (method url-fetch)
+             (uri (string-append
+                  "https://github.com/jgm/peg-markdown/archive/"
+                  version ".tar.gz"))
+             (file-name (string-append name "-" version ".tar.gz"))
+             (sha256
+              (base32
+               "1019f6hy1njmiigz16rrdgncrxz235sfq6zi1a4i3vfgb1hca6qi"))))
+    (build-system gnu-build-system)
+    (arguments
+      `(#:test-target "test"
+        #:make-flags (list "CC=gcc")
+        #:phases (modify-phases %standard-phases
+                   (delete 'configure)
+                   ;; The Makefile offers a memory leak test using
+                   ;; Valgrind.
+                   (add-after 'check 'leak-check
+                              (lambda _
+                                (zero? (system* "make" "leak-check"))))
+                  (replace
+                    'install
+                    (lambda* (#:key outputs #:allow-other-keys)
+                      ;; The Makefile does not check if the output paths exist.
+                      (let* ((out (assoc-ref %outputs "out"))
+                             (bin (string-append out "/bin"))
+                             (doc (string-append out "/share/man/man1")))
+                        (mkdir-p bin)
+                        ;; The top-level Makefile does not have an install
+                        ;; target, so we have to do this manually.
+                        (zero?
+                          (system* "make" "-C" "peg-0.1.4"
+                                   (string-append "PREFIX=" %output)
+                                   "CC=gcc" "install"))
+                        ;; The Makefile does not install the manpage.
+                        (install-file "peg-0.1.4/peg.1" doc)
+                        #t))))))
+    (native-inputs
+     `(("pkg-config" ,pkg-config)
+       ("valgrind" ,valgrind)))
+    (inputs
+      `(("perl" ,perl)
+        ("glib" ,glib)))
+    (synopsis "Implementation of markdown in C, using a PEG grammar")
+    (description "This is an implementation of John Gruber's markdown in C.  It
+uses a parsing expression grammar (PEG) to define the syntax.  This should allow
+easy modification and extension.  It currently supports output in HTML, LaTeX,
+ODF, or groff_mm formats.  Both a library and a standalone program are
+provided.")
+    (home-page "https://github.com/jgm/peg-markdown")
+    (license (list gpl2+ expat)))) ; Dual-licensed
-- 
2.6.2

      reply	other threads:[~2015-11-28 20:25 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-11-28 20:26 [PATCH 0/1] Add peg-markdown Leo Famulari
2015-11-28 20:26 ` Leo Famulari [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ad1a53c35d1355c52c15abac1f80665580b7b3da.1448742347.git.leo@famulari.name \
    --to=leo@famulari.name \
    --cc=guix-devel@gnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
Code repositories for project(s) associated with this external index

	https://git.savannah.gnu.org/cgit/guix.git

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.