this repo has no description
1opam-version: "2.0" 2synopsis: "Not Another Compiler Compiler" 3description: """ 4 5 nacc, short for "Not a Compiler Compiler" or alternatively "Not Another Compiler Compiler" is a homemade parser combinator, as inspired from Computerphile's video on Functional Parsing (https://www.youtube.com/watch?v=dDtZLm7HIJs). 6 7 nacc strives to be simple yet monadic, allowing any context-free grammar to be safely parsed with this library. The library provides utility functions and operators to ease the writing of combinator parsers.""" 8maintainer: ["Nathan Graule <solarliner@gmail.com>"] 9authors: [ 10 "Nathan Graule <solarliner@gmail.com>" 11 "Arthur Correnson <arthur.correnson@gmail.com>" 12] 13license: "MIT" 14homepage: "https://github.com/codeanonorg/nacc" 15doc: "https://codeanonorg.github.io/nacc" 16bug-reports: "https://github.com/codeanonorg/nacc/issues" 17depends: [ 18 "ocaml" {>= "4.08"} 19 "ppx_deriving" {>= "4.4"} 20 "ppx_variants_conv" {>= "0.13"} 21 "dune" {>= "2.0"} 22] 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@runtest" {with-test} 34 "@doc" {with-doc} 35 ] 36] 37dev-repo: "git+https://github.com/codeanonorg/nacc.git" 38url { 39 src: 40 "https://github.com/codeanonorg/nacc/releases/download/1.0/nacc-1.0.tbz" 41 checksum: [ 42 "sha256=bf68a6a56150e3425b53dace30472552a01503ae5a1c5b274a864d442165d69f" 43 "sha512=88e034277e6f548478cd65f2e209a83dbb72c050cdab0e0bd27f5da98a87d46753c02167782d93d8c738d3db95978ea8077bd656b9b23ddff7860b3a84947d37" 44 ] 45}