1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35
|
(lang dune 2.5)
(source (github colis-anr/morbig))
(maintainers "Nicolas “Niols” Jeannerod <niols@niols.fr>")
(authors
"Yann Régis-Gianas <yann.regis-gianas@irif.fr>"
"Ralf Treinen <ralf.treinen@irif.fr>"
"Nicolas Jeannerod <niols@niols.fr>")
(license GPL3-only)
(package
(name morbig)
(version 0.11.0)
(synopsis "A trustworthy parser for POSIX shell")
(description
"\| Morbig is a parser for shell scripts written in the POSIX shell script
"\| language. It parses the scripts statically, that is without executing
"\| them, and constructs a concrete syntax tree for each of them. The
"\| concrete syntax trees are built using constructors according to the
"\| shell grammar of the POSIX standard.
)
(depends
(dune (>= "1.4.0"))
(menhir (>= "20170509"))
(ocaml (>= "4.04"))
(odoc :with-doc)
ppx_deriving_yojson
(visitors (>= "20180513"))
(yojson (>= "1.6.0"))))
(generate_opam_files true)
(using menhir 2.0)
|