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]
15install: ["ocaml" "setup.ml" "-install"]
16synopsis:
17 "A syntax extension that implements support for fully qualified module references"
18description: """
19Pa_qualified adds support for fully qualified module references to OCaml.
20If a module reference (in any possible context) starts with "Q.", then
21the rest of the reference denotes a context-independent globally unique
22path (as if the reference was located at the very beginning of the file).
23Qualified references can never be shadowed by other definitions
24(warranty void if "Q" is defined explicitly somewhere)."""
25dev-repo: "git+https://github.com/murmour/pa_qualified.git"
26flags: light-uninstall
27available: [os != "win32"]
28url {
29 src:
30 "https://github.com/ocaml/opam-source-archives/raw/main/pa_qualified-0.6.tar.gz"
31 checksum: [
32 "sha256=3d78acea7067c1cbb89ce7c26fd06fe32f4409a1fb491cb5fbca7c182b5dd0e9"
33 "md5=aa92760a461340c1085b40c546dc5145"
34 ]
35}