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.07.0"} 14 "base" {>= "v0.13" & < "v0.14"} 15 "posixat" {>= "v0.13" & < "v0.14"} 16 "base-threads" 17 "dune" {>= "1.5.1"} 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 { 27 src: 28 "https://ocaml.janestreet.com/ocaml-core/v0.13/files/shexp-v0.13.0.tar.gz" 29 checksum: [ 30 "sha256=ff0e6ed52adf66dc1a1a9c85577dac043a0821feacfab09a5b8bea8f99ff3ba5" 31 "md5=13002fde6249703d06ff820906cd96c9" 32 ] 33}