this repo has no description
1opam-version: "2.0" 2maintainer: "sheets@alum.mit.edu" 3authors: ["David Sheets" "Jeremy Yallop"] 4homepage: "https://github.com/dsheets/ocaml-unix-dirent" 5bug-reports: "https://github.com/dsheets/ocaml-unix-dirent/issues" 6license: "ISC" 7tags: ["unix" "posix" "dirent" "syscall" "readdir"] 8dev-repo: "git+https://github.com/dsheets/ocaml-unix-dirent.git" 9build: [make "build"] 10install: [make "install"] 11remove: [make "uninstall"] 12depends: [ 13 "ocaml" {>= "4.01.0"} 14 "ocamlfind" {build} 15 "ocamlbuild" {build} 16 "alcotest" {with-test} 17 "base-bytes" 18] 19depopts: [ 20 "base-unix" "unix-type-representations" "ctypes" "unix-errno" "lwt" 21] 22conflicts: [ 23 "ctypes" {< "0.4.0"} 24 "unix-errno" {< "0.4.0"} 25 "unix-errno" {>= "0.5.0"} 26] 27synopsis: 28 "ocaml-unix-dirent provides access to the features exposed in dirent.h" 29description: """ 30in a way that is not tied to the implementation on the host system. 31 32The Dirent module provides functions for translating between the file kinds 33accessible through dirent.h and their values on particular systems. 34 35The Dirent_unix provides bindings to functions that use the types in Dirent 36along with a representation of the host system. The bindings support a more 37comprehensive range of file kinds than the corresponding functions in the 38standard OCaml Unix module. The Dirent_unix_lwt module exports non-blocking 39versions of the functions in Dirent_unix based on the Lwt cooperative 40threading library.""" 41url { 42 src: "https://github.com/dsheets/ocaml-unix-dirent/archive/0.3.2.tar.gz" 43 checksum: [ 44 "sha256=01e770d5b1223880424ecf8be2842ee6c80a41aba41224f01cec61370b60d7f1" 45 "md5=c0443c156fd5821911fb30b68c099ad7" 46 ] 47}