[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[bug#49101] [PATCH 1/4] gnu: Add ocaml-mparser.
From: |
Xinglu Chen |
Subject: |
[bug#49101] [PATCH 1/4] gnu: Add ocaml-mparser. |
Date: |
Fri, 18 Jun 2021 21:03:00 +0200 |
* gnu/packages/ocaml.scm (ocaml-mparser): New variable.
---
gnu/packages/ocaml.scm | 27 +++++++++++++++++++++++++++
1 file changed, 27 insertions(+)
diff --git a/gnu/packages/ocaml.scm b/gnu/packages/ocaml.scm
index 7dd9338458..e90ed8f4e4 100644
--- a/gnu/packages/ocaml.scm
+++ b/gnu/packages/ocaml.scm
@@ -6741,6 +6741,33 @@ in the documentation always stays up-to-date.
compatibility.")
(license license:isc)))
+(define-public ocaml-mparser
+ (package
+ (name "ocaml-mparser")
+ (version "1.3")
+ (source
+ (origin
+ (method git-fetch)
+ (uri (git-reference
+ (url "https://github.com/murmour/mparser")
+ (commit version)))
+ (file-name (git-file-name name version))
+ (sha256
+ (base32
+ "16j19v16r42gcsii6a337zrs5cxnf12ig0vaysxyr7sq5lplqhkx"))))
+ (build-system dune-build-system)
+ (arguments
+ ;; No tests.
+ '(#:package "mparser"
+ #:tests? #f))
+ (home-page "https://github.com/murmour/mparser")
+ (synopsis "Simple monadic parser combinator library")
+ (description
+ "This library implements a rather complete and efficient monadic parser
+combinator library similar to the Parsec library for Haskell by Daan Leijen and
+the FParsec library for FSharp by Stephan Tolksdorf.")
+ ;; With static linking exception.
+ (license license:lgpl2.1+)))
(define-public lablgtk3
(package
(name "lablgtk")
--
2.32.0
- [bug#49101] [PATCH 0/4] Add ocaml-mparser & friends, Xinglu Chen, 2021/06/18
- [bug#49101] [PATCH 3/4] gnu: Add ocaml-mparser-pcre., Xinglu Chen, 2021/06/18
- [bug#49101] [PATCH 1/4] gnu: Add ocaml-mparser.,
Xinglu Chen <=
- [bug#49101] [PATCH 4/4] gnu: Add ocaml-pcre., Xinglu Chen, 2021/06/18
- [bug#49101] [PATCH 2/4] gnu: Add ocaml-mparser-re., Xinglu Chen, 2021/06/18
- [bug#49101] [PATCH 0/4] Add ocaml-mparser & friends, Julien Lepiller, 2021/06/18
- [bug#49101] [PATCH v2 0/5] Add ocaml-mparser & firends, Xinglu Chen, 2021/06/19
- [bug#49101] [PATCH v2 2/5] gnu: ocaml4.07-expect: Switch to default OCaml compiler., Xinglu Chen, 2021/06/19