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 "ctypes-build" {build} 20 "alcotest" {with-test} 21 "base-bytes" 22 "unix-errno" {>= "0.4.0" & < "0.6.0"} 23 "ctypes" {>= "0.6.0"} 24 "posix-types" {< "2.0.0"} 25 "unix-type-representations" 26] 27depopts: ["base-unix" "lwt"] 28conflicts: ["lwt" {< "2.4.7"} "lwt" {>= "4.0.0"}] 29synopsis: 30 "ocaml-unix-sys-stat provides access to the features exposed in sys/stat.h" 31description: """ 32in a way that is not tied to the implementation on the host system. 33 34The Sys_stat module provides functions for translating between the file 35types and mode bits accessible through sys/stat.h and their values on 36particular systems. The Sys_stat_host module exports representations of 37various hosts. 38 39The Sys_stat_unix provides bindings to functions that use the types in 40Sys_stat along with a representation of the host system. The bindings 41support a more comprehensive range of flags than the corresponding 42functions in the standard OCaml Unix module.""" 43url { 44 src: "https://github.com/dsheets/ocaml-unix-sys-stat/archive/0.5.2.tar.gz" 45 checksum: [ 46 "sha256=3f1770421c3e8876cbea7532bb04daf4c950c1ddd44f526d82c8b293c5a8c781" 47 "md5=9657abc17cfd0b67dd99e2808cf93736" 48 ] 49}