this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/shexp" 5bug-reports: "https://github.com/janestreet/shexp/issues" 6dev-repo: "git+https://github.com/janestreet/shexp.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/shexp/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "posixat" {>= "v0.15" & < "v0.16"} 15 "sexplib0" {>= "v0.15" & < "v0.16"} 16 "base-threads" 17 "dune" {>= "2.0.0"} 18 "spawn" {>= "v0.12"} 19] 20synopsis: "Process library and s-expression based shell" 21description: " 22Shexp is composed of two parts: a library providing a process monad 23for shell scripting in OCaml as well as a simple s-expression based 24shell interpreter. Shexp works on both Unix and Windows. 25" 26url { 27src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/shexp-v0.15.0.tar.gz" 28checksum: "sha256=4af322366779ce139a625c5d815d76d82a2ae7d9bc2efec33b5c3b824e04e6d3" 29}