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-sys-stat" 5bug-reports: "https://github.com/dsheets/ocaml-unix-sys-stat/issues" 6license: "ISC" 7tags: ["unix" "posix" "sys/stat.h" "syscall" "stat"] 8dev-repo: "git+https://github.com/dsheets/ocaml-unix-sys-stat.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 "base-bytes" 21 "unix-errno" {>= "0.4.0"} 22 "ctypes" 23 "posix-types" {< "2.0.0"} 24 "unix-type-representations" 25] 26depopts: ["base-unix" "lwt"] 27conflicts: [ 28 "ctypes" {< "0.4.0"} 29 "ctypes" {>= "0.7.0"} 30 "lwt" {< "2.4.7"} 31 "lwt" {>= "4.0.0"} 32] 33synopsis: 34 "ocaml-unix-sys-stat provides access to the features exposed in sys/stat.h in a way that is not tied to the implementation on the host system." 35description: """ 36The Sys_stat module provides functions for translating between the file types and mode bits accessible through sys/stat.h and their values on particular systems. The Sys_stat_host module exports representations of various hosts. 37 38The Sys_stat_unix provides bindings to functions that use the types in Sys_stat along with a representation of the host system. The bindings support a more comprehensive range of flags than the corresponding functions in the standard OCaml Unix module.""" 39url { 40 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.4.0.tar.gz" 41 checksum: [ 42 "sha256=ea1d88ae83e3eaca7b8eed66621e2b45296e0bad6fd46fb83c1ff535b346dcb7" 43 "md5=480d753196705fd4b4b3dde8f542f485" 44 ] 45}