this repo has no description
1opam-version: "2.0" 2maintainer: "sheets@alum.mit.edu" 3authors: "David Sheets" 4homepage: "https://github.com/dsheets/ocaml-osx-mount" 5bug-reports: "https://github.com/dsheets/ocaml-osx-mount/issues" 6license: "ISC" 7tags: ["osx" "mount" "mountpoint" "mtab" "mount table" "file system"] 8dev-repo: "git+https://github.com/dsheets/ocaml-osx-mount.git" 9build: [ 10 [make "build"] 11 [make "test"] {with-test} 12] 13install: [make "install"] 14remove: [make "uninstall"] 15depends: [ 16 "ocaml" 17 "ocamlfind" {build} 18 "ocamlbuild" {build} 19 "alcotest" {with-test} 20 "ctypes" {>= "0.4.0"} 21 "unix-errno" {>= "0.4.0"} 22 "base-unix" 23] 24depopts: "lwt" 25available: os = "macos" 26synopsis: "Bindings to OS X mount system calls" 27description: """ 28`getmntinfo` and `statfs` are bound as well as the statfs struct as a 29record type.""" 30url { 31 src: "https://github.com/dsheets/ocaml-osx-mount/archive/0.1.1.tar.gz" 32 checksum: [ 33 "sha256=8c030c8f5ee89e509dfd167d832fae24bc20f9cc726d75fb7d955a4733c5daff" 34 "md5=f142fb138a9e3983d8d7366150bc6709" 35 ] 36}