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