this repo has no description
1opam-version: "2.0" 2maintainer: "Marco Aurélio <marcoonroad@gmail.com>" 3authors: "Marco Aurélio <marcoonroad@gmail.com>" 4homepage: "http://github.com/marcoonroad/shared-secret" 5bug-reports: "http://github.com/marcoonroad/shared-secret/issues" 6license: "MIT" 7dev-repo: "git+http://github.com/marcoonroad/shared-secret.git" 8build: [ 9 ["oasis" "setup"] 10 ["./configure" "--prefix=%{prefix}%" "--%{ounit:enable}%-tests"] 11 [make] 12 [make "test"] {with-test} 13] 14install: [make "install"] 15remove: ["ocamlfind" "remove" "shared-secret"] 16depends: [ 17 "ocaml" {>= "4.02"} 18 "ounit" {with-test} 19 "oasis" {build} 20 "ocamlfind" {build} 21] 22synopsis: "Exceptions are shared secrets." 23description: 24 "Abstract (encapsulated) messages or hidden (semi-deterministic) exceptions using OCaml's module system." 25flags: light-uninstall 26url { 27 src: "https://github.com/marcoonroad/shared-secret/archive/v0.2.zip" 28 checksum: [ 29 "sha256=2116af76a3873fd76a00d7e9dd39e7cfd4c0b666139a600e8d35d327535ff730" 30 "md5=cdcc865a55ac181443b1003ccdcdf9d2" 31 ] 32}