this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/posixat" 5bug-reports: "https://github.com/janestreet/posixat/issues" 6dev-repo: "git+https://github.com/janestreet/posixat.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/posixat/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.07.0"} 14 "base" {>= "v0.12" & < "v0.13"} 15 "ppx_optcomp" {>= "v0.12" & < "v0.13"} 16 "ppx_sexp_conv" {>= "v0.12" & < "v0.13"} 17 "dune" {>= "1.5.1"} 18] 19synopsis: "Bindings to the posix *at functions" 20description: " 21Posixat is a small library that just binds the various *at posix 22functions. 23 24The posix *at functions takes the current working directory as a file 25descriptor. For instance this allows to reliably maintain several 26working directories inside the same process. 27" 28url { 29 src: 30 "https://ocaml.janestreet.com/ocaml-core/v0.12/files/posixat-v0.12.0.tar.gz" 31 checksum: [ 32 "sha256=793456d039d50b8fd4ce3ecae2afb51d4ac46a99523123b830d86ef22fc917a5" 33 "md5=2e89e89ca1c67d454a0dbb94930d3531" 34 ] 35}