mte/unikernel/duniverse/bos/bos.opam

40 lines
1.3 KiB
Text
Raw Normal View History

2025-11-11 02:07:51 +01:00
version: "0.2.1+dune"
opam-version: "2.0"
maintainer: "Daniel Bünzli <daniel.buenzl i@erratique.ch>"
authors: ["Daniel Bünzli <daniel.buenzl i@erratique.ch>"]
dev-repo: "git+https://github.com/dune-universe/bos.git"
tags: [ "os" "system" "cli" "command" "file" "path" "log" "unix" "org:erratique" ]
license: "ISC"
build: [[ "dune" "build" "-p" name ]]
depends: [
"dune"
"ocaml" {>= "4.01.0"}
"base-unix"
"rresult" {>= "0.4.0"}
"astring"
"fpath"
"fmt" {>= "0.8.0"}
"logs"
"mtime" {with-test}
]
synopsis: "Basic OS interaction for OCaml"
description: """
Bos provides support for basic and robust interaction with the
operating system in OCaml. It has functions to access the process
environment, parse command line arguments, interact with the file
system and run command line programs.
Bos works equally well on POSIX and Windows operating systems.
Bos depends on [Rresult][rresult], [Astring][astring], [Fmt][fmt],
[Fpath][fpath] and [Logs][logs] and the OCaml Unix library. It is
distributed under the ISC license.
[rresult]: http://erratique.ch/software/rresult
[astring]: http://erratique.ch/software/astring
[fmt]: http://erratique.ch/software/fmt
[fpath]: http://erratique.ch/software/fpath
[logs]: http://erratique.ch/software/logs
Home page: http://erratique.ch/software/bos
Contact: Daniel Bünzli `<daniel.buenzl i@erratique.ch>`"""