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" {>= "5.1.0"} 14 "base" {>= "v0.17" & < "v0.18"} 15 "ppx_optcomp" {>= "v0.17" & < "v0.18"} 16 "ppx_sexp_conv" {>= "v0.17" & < "v0.18"} 17 "dune" {>= "3.11.0"} 18] 19available: arch != "arm32" & arch != "x86_32" 20synopsis: "Bindings to the posix *at functions" 21description: " 22Posixat is a small library that just binds the various *at posix 23functions. 24 25The posix *at functions takes the current working directory as a file 26descriptor. For instance this allows to reliably maintain several 27working directories inside the same process. 28" 29url { 30src: "https://github.com/janestreet/posixat/archive/refs/tags/v0.17.0.tar.gz" 31checksum: "sha256=6f45df31dccb16b014243b1c155d5dbc59de3184562f4869cd9f6e3d05be03cc" 32}