1
0
mirror of https://git.savannah.gnu.org/git/guix.git synced 2026-04-07 13:40:36 +02:00

gnu: Add ocaml-mparser-pcre.

* gnu/packages/ocaml.scm (ocaml-mparser-pcre): New variable.

Signed-off-by: Julien Lepiller <julien@lepiller.eu>
This commit is contained in:
Xinglu Chen
2021-06-19 17:50:41 +02:00
committed by Julien Lepiller
parent 620b4e8ad3
commit dcd94ee855

View File

@@ -6842,6 +6842,21 @@ the FParsec library for FSharp by Stephan Tolksdorf.")
(description "This package provides RE-based regular expressions
support for Mparser.")))
(define-public ocaml-mparser-pcre
(package
(inherit ocaml-mparser)
(name "ocaml-mparser-pcre")
(arguments
;; No tests.
'(#:package "mparser-pcre"
#:tests? #f))
(propagated-inputs
`(("ocaml-mparser" ,ocaml-mparser)
("ocaml-pcre" ,ocaml-pcre)))
(synopsis "MParser plugin for PCRE-based regular expressions")
(description "This package provides PCRE-based regular expressions
support for Mparser.")))
(define-public lablgtk3
(package
(name "lablgtk")