this repo has no description
1opam-version: "2.0" 2authors: ["John Else"] 3homepage: "https://github.com/johnelse/ocaml-mvar" 4bug-reports: "https://github.com/johnelse/ocaml-mvar/issues" 5dev-repo: "git+https://github.com/johnelse/ocaml-mvar" 6maintainer: "john.else@gmail.com" 7build: [ 8 ["jbuilder" "build" "-p" name] 9 ["jbuilder" "runtest"] {with-test} 10] 11install: [ 12 ["jbuilder" "install" "-p" name] 13] 14remove: [ 15 ["jbuilder" "uninstall" "-p" name] 16] 17depends: [ 18 "ocaml" {>= "4.02.0"} 19 "jbuilder" {>= "1.0+beta7"} 20 "opam-installer" {build} 21 "ocamlfind" {build} 22 "ounit" {with-test} 23] 24synopsis: "Threadsafe mutable variables for Unix threads" 25url { 26 src: "https://github.com/johnelse/ocaml-mvar/archive/mvar.1.0.0.tar.gz" 27 checksum: [ 28 "sha256=089be6f7715cb631fa9e35e6c645077b00c4d242e7669c0d648f47d2d5c4d6ea" 29 "md5=a093c88dbcce7085ed1d673953ae78bd" 30 ] 31}