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.6.0"} 24 "unix-errno" {< "0.5.0"} 25] 26synopsis: 27 "ocaml-unix-dirent provides access to the features exposed in dirent.h" 28description: """ 29in a way that is not tied to the implementation on the host system. 30 31The Dirent module provides functions for translating between the file kinds 32accessible through dirent.h and their values on particular systems. 33 34The Dirent_unix provides bindings to functions that use the types in Dirent 35along with a representation of the host system. The bindings support a more 36comprehensive range of file kinds than the corresponding functions in the 37standard OCaml Unix module. The Dirent_unix_lwt module exports non-blocking 38versions of the functions in Dirent_unix based on the Lwt cooperative 39threading library.""" 40url { 41 src: "https://github.com/dsheets/ocaml-unix-dirent/archive/0.3.4.tar.gz" 42 checksum: [ 43 "sha256=78cec8afe0fc4baac8f4db75e23983de0aea8146b45284d89ed31de43bc980d6" 44 "md5=3d5b1a2b996acdcd8bae82365dee025b" 45 ] 46}