this repo has no description
1synopsis: "A PPX Rewriter for Uniqifying ASTs" 2description: 3""" 4This is a PPX Rewriter for uniqifying ASTs: inserting unique IDs 5systematically throughout an AST. 6""" 7opam-version: "2.0" 8maintainer: "Chet Murthy <chetsky@gmail.com>" 9authors: ["Chet Murthy"] 10homepage: "https://github.com/camlp5/pa_ppx_unique" 11license: "BSD-3-Clause" 12bug-reports: "https://github.com/camlp5/pa_ppx_unique/issues" 13dev-repo: "git+https://github.com/camlp5/pa_ppx_unique.git" 14doc: "https://github.com/camlp5/pa_ppx_unique/doc" 15 16depends: [ 17 "ocaml" { >= "4.10.0" & < "4.13.0" } 18 "conf-perl" 19 "conf-perl-ipc-system-simple" 20 "conf-perl-string-shellquote" 21 "camlp5" { >= "8.00" } 22 "pa_ppx" { >= "0.07.02" } 23 "pa_ppx_migrate" { with-test & >= "0.07.02" } 24 "not-ocamlfind" { >= "0.01" } 25 "pcre" { >= "7.4.3" } 26 "ounit" {with-test} 27 "bos" { >= "0.2.0" } 28] 29build: [ 30 [make "sys"] 31 [make "test"] {with-test} 32] 33install: [make "install"] 34url { 35 src: "https://github.com/camlp5/pa_ppx_unique/archive/0.07.02.tar.gz" 36 checksum: [ 37 "sha512=7649db01a15f4bcb362ec8613979ea499a7c5f472c1ef505b672ebcadfd98a7937776618354a6d68df4d94ca9aa0dc243e0c8501566bff043db6beffa442586f" 38 ] 39}