this repo has no description
1opam-version: "2.0" 2maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>" 3authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"] 4homepage: "http://erratique.ch/software/bos" 5doc: "http://erratique.ch/software/bos/doc" 6dev-repo: "git+http://erratique.ch/repos/bos.git" 7bug-reports: "https://github.com/dbuenzli/bos/issues" 8tags: [ "os" "system" "cli" "command" "file" "path" "log" "unix" "org:erratique" ] 9license: "ISC" 10depends: [ 11 "ocaml" {>= "4.01.0" & < "5.0"} 12 "ocamlfind" {build} 13 "ocamlbuild" {build} 14 "topkg" {build & >= "0.9.0"} 15 "base-unix" 16 "rresult" {>= "0.4.0" & < "0.7.0"} 17 "astring" 18 "fpath" 19 "fmt" {>= "0.8.0"} 20 "logs" {>= "0.5.0"} 21 "mtime" {with-test} 22] 23build: [[ 24 "ocaml" "pkg/pkg.ml" "build" 25 "--dev-pkg" "%{pinned}%" ]] 26synopsis: "Basic OS interaction for OCaml" 27description: """ 28Bos provides support for basic and robust interaction with the 29operating system in OCaml. It has functions to access the process 30environment, parse command line arguments, interact with the file 31system and run command line programs. 32 33Bos works equally well on POSIX and Windows operating systems. 34 35Bos depends on [Rresult][rresult], [Astring][astring], [Fmt][fmt], 36[Fpath][fpath] and [Logs][logs] and the OCaml Unix library. It is 37distributed under the ISC license. 38 39[rresult]: http://erratique.ch/software/rresult 40[astring]: http://erratique.ch/software/astring 41[fmt]: http://erratique.ch/software/fmt 42[fpath]: http://erratique.ch/software/fpath 43[logs]: http://erratique.ch/software/logs""" 44url { 45 src: "http://erratique.ch/software/bos/releases/bos-0.2.0.tbz" 46 checksum: [ 47 "sha256=8c27b2cbc89a9e7ca32ecf8b232ab5c8c91c395dc4d1916cc9ddbe8c3a8e20e8" 48 "md5=aeae7447567db459c856ee41b5a66fd2" 49 ] 50}