this repo has no description
1opam-version: "2.0"
2synopsis: "Universally unique identifiers (UUIDs) for OCaml"
3description: """\
4Uuidm is an OCaml module implementing 128 bits universally unique
5identifiers version 3, 5 (named based with MD5, SHA-1 hashing) and 4
6(random based) according to [RFC 4122][rfc4122].
7
8Uuidm has no dependency and is distributed under the ISC license.
9
10[rfc4122]: http://tools.ietf.org/html/rfc4122
11
12Homepage: <http://erratique.ch/software/uuidm>"""
13maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
14authors: "The uuidm programmers"
15license: "ISC"
16tags: ["uuid" "codec" "org:erratique"]
17homepage: "https://erratique.ch/software/uuidm"
18doc: "https://erratique.ch/software/uuidm/doc/"
19bug-reports: "https://github.com/dbuenzli/uuidm/issues"
20depends: [
21 "ocaml" {>= "4.08.0"}
22 "ocamlfind" {build}
23 "ocamlbuild" {build}
24 "topkg" {build & >= "1.0.3"}
25]
26depopts: ["cmdliner"]
27conflicts: [
28 "cmdliner" {< "1.1.0"}
29]
30build: [
31 "ocaml"
32 "pkg/pkg.ml"
33 "build"
34 "--dev-pkg"
35 "%{dev}%"
36 "--with-cmdliner"
37 "%{cmdliner:installed}%"
38]
39dev-repo: "git+https://erratique.ch/repos/uuidm.git"
40url {
41 src: "https://erratique.ch/software/uuidm/releases/uuidm-0.9.8.tbz"
42 checksum:
43 "sha512=d5073ae49c402ab3ea6dc8f86bc5b8cc14129437e23e47da4d91431648fcb31c4dce6308f9c936c58df9a2c6afda61d77105a3022e369cca4e4c140320e803b5"
44}