this repo has no description
1opam-version: "2.0" 2maintainer: "andreashauptmann@t-online.de" 3authors: [ "andreashauptmann@t-online.de" ] 4license: "LGPL-2.1-or-later WITH OCaml-LGPL-linking-exception" 5homepage: "https://fdopen.github.io/ppx_cstubs/" 6dev-repo: "git+https://github.com/fdopen/ppx_cstubs.git" 7doc: "https://fdopen.github.io/ppx_cstubs/" 8bug-reports: "https://github.com/fdopen/ppx_cstubs/issues" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ctypes" {>= "0.13.0" & < "0.18"} 14 "integers" {< "0.5.0"} 15 "num" 16 "result" 17 "containers" {>= "2.2"} 18 "cppo" {build & >= "1.3"} 19 "ocaml" {>= "4.04.2" & < "4.13.0"} 20 "ppxlib" {>= "0.18.0" & < "0.22.0"} 21 "ocamlfind" {>= "1.7.2"} # not only a build dependency, it depends on findlib.top 22 "dune" {>= "1.6"} 23 "re" {>= "1.7.2"} 24] 25 26synopsis: """ 27Preprocessor for easier stub generation with ctypes 28""" 29 30description: """ 31ppx_cstubs is a ppx-based preprocessor for stub generation with 32ctypes. ppx_cstubs creates two files from a single ml file: a file 33with c stub code and an OCaml file with all additional boilerplate 34code. 35""" 36url { 37 src: "https://github.com/fdopen/ppx_cstubs/archive/0.6.0.tar.gz" 38 checksum: [ 39 "md5=418ecd021b602cc51e16f2610fb6dff2" 40 "sha512=db0a8c1f3d9d4a0019f4533faaf7a10ac52dd8b9e7881e9ad4c8fc786ae57c860aec95fbaa42cd4c5acb3fbefb6162828c90e3fd7536692c80dce7f68e4410e4" 41 ] 42}