this repo has no description
1opam-version: "2.0" 2maintainer: "Simon Grondin" 3authors: [ 4 "Simon Grondin" 5] 6synopsis: "Generate unit types for every record field" 7description: """ 8ppx_units is a simple deriver to automatically generate single variant types from record type definitions 9""" 10license: "MPL-2.0" 11homepage: "https://github.com/SGrondin/ppx_units" 12dev-repo: "git+https://github.com/SGrondin/ppx_units" 13doc: "https://github.com/SGrondin/ppx_units" 14bug-reports: "https://github.com/SGrondin/ppx_units/issues" 15depends: [ 16 "ocaml" {>= "4.10.0"} 17 "dune" {>= "2.0.0"} 18 19 "ppxlib" { >= "0.14.0" } 20 21 "alcotest" { with-test } 22] 23build: ["dune" "build" "-p" name "-j" jobs] 24url { 25 src: "https://github.com/SGrondin/ppx_units/archive/1.0.0.tar.gz" 26 checksum: [ 27 "md5=ae627f403e258a49dba179bfca0b631c" 28 "sha512=ed057812b22bc1edda39091801c4229babdc2708d3a629d1d896ab0cb4e651dea3c9db32a9ed9d69fa2058677a0f5d9921546b92e7e32d3f6626825191553e11" 29 ] 30}