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"
7dev-repo: "git+https://github.com/dsheets/ocaml-unix-dirent.git"
8build: [make "build"]
9install: [make "install"]
10remove: [make "uninstall"]
11depends: [
12 "ocaml" {>= "4.01.0"}
13 "ocamlfind" {build}
14 "ocamlbuild" {build}
15 "alcotest" {with-test}
16 "base-bytes"
17]
18depopts: [
19 "base-unix" "unix-type-representations" "ctypes" "unix-errno" "lwt"
20]
21conflicts: [
22 "ctypes" {< "0.4.0"}
23 "ctypes" {>= "0.6.0"}
24 "unix-errno" {>= "0.4.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.0.tar.gz"
42 checksum: [
43 "sha256=57ee9351918002b8470ff78dd454ba0b3eb73e5cd9aab25972c8ab0e5b522249"
44 "md5=6c900407bdad0c5c64727de9f46dbabd"
45 ]
46}