forked from dbuenzli/uuidm
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathopam
40 lines (37 loc) · 1.08 KB
/
opam
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
opam-version: "2.0"
name: "uuidm"
synopsis: "Universally unique identifiers (UUIDs) for OCaml"
description: """\
Uuidm is an OCaml module implementing 128 bits universally unique
identifiers version 3, 5 (named based with MD5, SHA-1 hashing) and 4
(random based) according to [RFC 4122][rfc4122].
Uuidm has no dependency and is distributed under the ISC license.
[rfc4122]: http://tools.ietf.org/html/rfc4122
Homepage: <http://erratique.ch/software/uuidm>"""
maintainer: "Daniel Bünzli <daniel.buenzl [email protected]>"
authors: "The uuidm programmers"
license: "ISC"
tags: ["uuid" "codec" "org:erratique"]
homepage: "https://erratique.ch/software/uuidm"
doc: "https://erratique.ch/software/uuidm/doc/"
bug-reports: "https://github.com/dbuenzli/uuidm/issues"
depends: [
"ocaml" {>= "4.08.0"}
"ocamlfind" {build}
"ocamlbuild" {build}
"topkg" {build & >= "1.0.3"}
]
depopts: ["cmdliner"]
conflicts: [
"cmdliner" {< "1.1.0"}
]
build: [
"ocaml"
"pkg/pkg.ml"
"build"
"--dev-pkg"
"%{dev}%"
"--with-cmdliner"
"%{cmdliner:installed}%"
]
dev-repo: "git+https://erratique.ch/repos/uuidm.git"