this repo has no description
1opam-version: "2.0" 2maintainer: "Max Mouratov <mmouratov@gmail.com>" 3homepage: "https://github.com/murmour/pa_qualified/" 4license: "LGPL-2.1-only WITH OCaml-LGPL-linking-exception" 5build: [ 6 ["ocaml" "setup.ml" "-configure"] 7 ["ocaml" "setup.ml" "-build"] 8] 9remove: [["ocamlfind" "remove" "pa_qualified"]] 10depends: [ 11 "ocaml" {>= "4.01.0" & < "5.0"} 12 "ocamlfind" 13 "camlp4" 14 "ocamlbuild" {build} 15] 16dev-repo: "git+https://github.com/murmour/pa_qualified.git" 17install: ["ocaml" "setup.ml" "-install"] 18synopsis: 19 "A syntax extension that implements support for fully qualified module references" 20description: """ 21Pa_qualified adds support for fully qualified module references to OCaml. 22If a module reference (in any possible context) starts with "Q.", then 23the rest of the reference denotes a context-independent globally unique 24path (as if the reference was located at the very beginning of the file). 25Qualified references can never be shadowed by other definitions 26(warranty void if "Q" is defined explicitly somewhere).""" 27available: [os != "win32"] 28flags: light-uninstall 29url { 30 src: 31 "https://github.com/ocaml/opam-source-archives/raw/main/pa_qualified-0.5.tar.gz" 32 checksum: [ 33 "sha256=8de8631abd119dc761e06bc545dc195d279ae68383d227131e774b17932977a6" 34 "md5=ae26fa6f0f4814a58fdbe2d852c41bff" 35 ] 36}