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"
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.7.4"}
15 "conf-which"
16 "base-unix"
17 "rresult" {>= "0.3.0" & < "0.7.0"}
18 "astring"
19 "fpath"
20 "fmt" {>= "0.8.0"}
21 "logs" {>= "0.5.0"}
22 "mtime" {with-test}
23]
24build: [[
25 "ocaml" "pkg/pkg.ml" "build"
26 "--pinned" "%{pinned}%" ]]
27synopsis: "Basic OS interaction for OCaml"
28description: """
29Bos provides support for basic and robust interaction with the
30operating system in OCaml. It has functions to access the process
31environment, parse command line arguments, interact with the file
32system and run command line programs.
33
34Bos works equally well on POSIX and Windows operating systems.
35
36Bos depends on [Rresult][rresult], [Astring][astring], [Fmt][fmt],
37[Fpath][fpath] and [Logs][logs] and the OCaml Unix library. It is
38distributed under the ISC license.
39
40[rresult]: http://erratique.ch/software/rresult
41[astring]: http://erratique.ch/software/astring
42[fmt]: http://erratique.ch/software/fmt
43[fpath]: http://erratique.ch/software/fpath
44[logs]: http://erratique.ch/software/logs"""
45url {
46 src: "http://erratique.ch/software/bos/releases/bos-0.1.2.tbz"
47 checksum: [
48 "sha256=bfe455663a7d47088c1dfb633dc95a2e5a012c08a288ec34487b3ba73f392cc6"
49 "md5=eb9337d69bca9bd6b5c1ff90916eae58"
50 ]
51}