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" & < "0.6.0"} 22 "ctypes" {>= "0.6.0"} 23 "posix-types" {< "2.0.0"} 24 "unix-type-representations" 25] 26depopts: ["base-unix" "lwt"] 27conflicts: ["lwt" {< "2.4.7"} "lwt" {>= "4.0.0"}] 28synopsis: 29 "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." 30description: """ 31The 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. 32 33The 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.""" 34url { 35 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.5.0.tar.gz" 36 checksum: [ 37 "sha256=5815957cb06c80287dfcca69edf0c8b58633d28bb00e7f474ca1a650d7f04120" 38 "md5=23220a65aa78c3c51451d21379d899ea" 39 ] 40}