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