this repo has no description
1opam-version: "2.0" 2maintainer: "sheets@alum.mit.edu" 3authors: ["David Sheets" "Thomas Gazagnaire"] 4homepage: "https://github.com/dsheets/ocaml-osx-cf" 5bug-reports: "https://github.com/dsheets/ocaml-osx-cf/issues" 6license: "ISC" 7doc: "https://dsheets.github.io/ocaml-osx-cf/" 8dev-repo: "git+https://github.com/dsheets/ocaml-osx-cf.git" 9build: [ 10 [ 11 "ocaml" 12 "pkg/pkg.ml" 13 "build" 14 "--tests" 15 "false" 16 "--pinned" 17 pinned 18 "--with-lwt" 19 lwt:installed 20 ] 21 [ 22 "ocaml" 23 "pkg/pkg.ml" 24 "build" 25 "--tests" 26 "true" 27 "--pinned" 28 pinned 29 "--with-lwt" 30 lwt:installed 31 ] {with-test} 32 ["ocaml" "pkg/pkg.ml" "test"] {with-test} 33] 34depends: [ 35 "ocaml" 36 "ocamlfind" {build} 37 "topkg" {build & >= "0.7.4"} 38 "alcotest" {with-test} 39 "base-bytes" 40 "ctypes" {>= "0.4.0"} 41 "ctypes-foreign" 42] 43depopts: ["lwt" "base-threads"] 44conflicts: ["lwt" {>= "3.2.0"}] 45available: os = "macos" 46synopsis: "OS X CoreFoundation bindings" 47description: """ 48String, Array, Index, RunLoop (and Observer), and TimeInterval are 49bound. Additionally, an osx-cf.lwt subpackage provides lwt+RunLoop 50integration.""" 51url { 52 src: "https://github.com/dsheets/ocaml-osx-cf/archive/0.1.1.tar.gz" 53 checksum: [ 54 "sha256=1e57654e6fe0666cb288b6f706545da772dc010de66d5d5523ff7bbf5f89e82a" 55 "md5=7232aa423d252281f102a30f77cf66f4" 56 ] 57}