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" {>= "5.1.0"}
14 "posixat" {>= "v0.17" & < "v0.18"}
15 "sexplib0" {>= "v0.17" & < "v0.18"}
16 "base-threads"
17 "dune" {>= "3.11.0"}
18 "spawn" {>= "v0.15"}
19]
20available: arch != "arm32" & arch != "x86_32"
21synopsis: "Process library and s-expression based shell"
22description: "
23Shexp is composed of two parts: a library providing a process monad
24for shell scripting in OCaml as well as a simple s-expression based
25shell interpreter. Shexp works on both Unix and Windows.
26"
27url {
28src: "https://github.com/janestreet/shexp/archive/refs/tags/v0.17.0.tar.gz"
29checksum: "sha256=d19e518ace68dc86bc18e9af6b2b2ee0c62ed3341a25cf10cf464f22cb4f8b5d"
30}