this repo has no description
1opam-version: "2.0" 2maintainer: "iitalics, OhadRau" 3authors: ["iitalics" "OhadRau <admin@ohad.space>"] 4homepage: "https://github.com/nanocaml/nanocaml" 5bug-reports: "https://github.com/nanocaml/nanocaml/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/nanocaml/nanocaml.git" 8build: ["jbuilder" "build" "-p" name "-j" jobs] 9depends: [ 10 "ocaml" 11 "batteries" 12 "jbuilder" {>= "1.0+beta7"} 13 "ocaml-migrate-parsetree" {< "2.0.0"} 14] 15synopsis: "Framework for writing nanopass-style compilers" 16description: """ 17A PPX-based toolkit that eases compiler writing 18by automatically generating the code needed to 19write a compiler. Nanocaml is designed for the 20nanopass-style of writing compilers, which 21emphasizes the use of many small passes that 22only perform one change to the AST, rather than 23only a few large passes.""" 24url { 25 src: "https://github.com/nanocaml/nanocaml/archive/0.1.0.tar.gz" 26 checksum: [ 27 "sha256=f9f6772ff2e53d8fb3c22b459e9eb1fd68aefff381c121c0588ea3d0791cf5ae" 28 "md5=38877f4878af035303e02b3c9a399e98" 29 ] 30}