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.12" & < "v0.13"}
15 "posixat" {>= "v0.12" & < "v0.13"}
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.12/files/shexp-v0.12.0.tar.gz"
29 checksum: [
30 "sha256=b2ca616e5384d517a3bef878ed2fd364b2c51993f7f57f223954422e2eea0e1d"
31 "md5=d48e292eaa2f7e4f66fa5381eddc86a9"
32 ]
33}