this repo has no description
1opam-version: "2.0" 2 3synopsis: "A trustworthy parser for POSIX shell" 4description: """ 5Morbig is a parser for shell scripts written in the POSIX shell script 6language. It parses the scripts statically, that is without executing 7them, and constructs a concrete syntax tree for each of them. The 8concrete syntax trees are built using constructors according to the 9shell grammar of the POSIX standard. 10""" 11 12maintainer: "Nicolas Jeannerod <niols@niols.fr>" 13authors: [ 14 "Yann Régis-Gianas <yann.regis-gianas@irif.fr>" 15 "Ralf Treinen <ralf.treinen@irif.fr>" 16 "Nicolas Jeannerod <niols@niols.fr>" 17] 18license: "GPL-3.0-only" 19 20homepage: "https://github.com/colis-anr/morbig" 21bug-reports: "https://github.com/colis-anr/morbig/issues" 22dev-repo: "git+https://github.com/colis-anr/morbig.git" 23 24depends: [ 25 "dune" {>= "2.5.0"} 26 "menhir" {>= "20200211"} 27 "ocaml" {>= "4.11"} 28 "odoc" {with-doc} 29 "ppx_deriving_yojson" 30 "visitors" {>= "20200207"} 31 "yojson" {>= "1.6.0"} 32 "conf-jq" {with-test} 33] 34 35build: [make "build"] 36install: [make "install"] 37run-test: [make "check"] 38 39url { 40 src: "https://github.com/colis-anr/morbig/archive/v0.11.0.tar.gz" 41 checksum: [ 42 "md5=8829a7d682d7182c3d066b9ee42dec40" 43 "sha512=ed3fc21e6e9840a1a11f57cc34e9cd7f767227281c5822dd324f4b583a6ed126a22c9b79f3b3cf7b0dbdf6ff9c065e2ca25984e56aff9bd7f6ca41ec393525f9" 44 ] 45}