this repo has no description
1opam-version: "2.0" 2maintainer: "Robert Atkey <bob.atkey@gmail.com>" 3authors: "Robert Atkey <bob.atkey@gmail.com>" 4homepage: "https://github.com/bobatkey/ppx-monoid" 5bug-reports: "https://github.com/bobatkey/ppx-monoid" 6license: "MIT" 7dev-repo: "git+https://github.com/bobatkey/ppx-monoid.git" 8build: [ 9 [make] 10] 11install: [make "install"] 12remove: ["ocamlfind" "remove" "ppx_monoid"] 13depends: [ 14 "ocaml" {>= "4.02.1"} 15 "ocamlfind" {build} 16 "ocamlbuild" {build} 17 "ppx_tools" {>= "0.99.2"} 18] 19synopsis: "A syntax extension for easier building of values of monoids." 20description: """ 21Assumes the existence of two operations in scope for some type `t`: 22 23 empty : t 24 (^^) : t -> t -> t 25 26`ppx-monoid`, triggered by the PPX extension `monoid`, reinterprets 27the semicolon `;` to mean the monoid operation `^^` and the unit 28expression `()` to mean `empty`.""" 29flags: light-uninstall 30url { 31 src: "https://github.com/bobatkey/ppx-monoid/archive/0.1.zip" 32 checksum: [ 33 "sha256=67758eef6b5bfba9cf6abadcd4ad192f4ff4c3c09007bff0c939be9daf6dfb89" 34 "md5=010f9d8ea76a5272b7fd34800e6cd1c3" 35 ] 36}