this repo has no description
1opam-version: "2.0" 2synopsis: "Random text generator that takes context-free grammars from BNF files" 3description: """ 4BNFGen generates random texts based on user-defined context-free grammars 5specified in a BNF-like syntax. 6You can specify "weight" for rules with alternation to change the probabilities, 7for example, in `<foo> ::= 10 <foo> "foo" | "foo";` the recursive option will be 8ten times more likely to be taken. 9""" 10maintainer: "Daniil Baturin <daniil@baturin.org>" 11authors: "Daniil Baturin <daniil@baturin.org>" 12license: "MIT" 13homepage: "https://github.com/dmbaturin/bnfgen" 14bug-reports: "https://github.com/dmbaturin/bnfgen/issues" 15dev-repo: "git+https://github.com/dmbaturin/bnfgen" 16build: [ 17 ["dune" "subst"] {dev} 18 ["dune" "build" "-p" name] 19] 20depends: [ 21 "menhir" {build & >= "20180523"} 22 "dune" {>= "1.9"} 23] 24url { 25 src: "https://github.com/dmbaturin/bnfgen/archive/2.0.tar.gz" 26 checksum: [ 27 "md5=efb520633eac4197509ddc9e020c53a9" 28 "sha512=840be6c7bb98590457aa9fd64593eb5995a5ae9d77cb4a883cb2f5ff65008de5dd29f3b2d86a746d5edafb7c449b0223a7c82d6ec1a3209c98c9430609e117a7" 29 ] 30}