this repo has no description
1opam-version: "2.0"
2maintainer: "Jane Street developers"
3authors: ["Jane Street Group, LLC"]
4homepage: "https://github.com/janestreet/base"
5bug-reports: "https://github.com/janestreet/base/issues"
6dev-repo: "git+https://github.com/janestreet/base.git"
7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/base/index.html"
8license: "MIT"
9available: os != "win32" # https://github.com/ocaml/opam-repository/issues/24151
10build: [
11 ["dune" "build" "-p" name "-j" jobs]
12]
13depends: [
14 "ocaml" {>= "4.14.0"}
15 "sexplib0" {>= "v0.16" & < "v0.17"}
16 "dune" {>= "2.0.0"}
17 "dune-configurator"
18 "conf-bash"
19]
20synopsis: "Full standard library replacement for OCaml"
21description: "
22Full standard library replacement for OCaml
23
24Base is a complete and portable alternative to the OCaml standard
25library. It provides all standard functionalities one would expect
26from a language standard library. It uses consistent conventions
27across all of its module.
28
29Base aims to be usable in any context. As a result system dependent
30features such as I/O are not offered by Base. They are instead
31provided by companion libraries such as stdio:
32
33 https://github.com/janestreet/stdio
34"
35url {
36 src: "https://github.com/janestreet/base/archive/refs/tags/v0.16.2.tar.gz"
37 checksum: [
38 "md5=e0fbb6fd77d85b5de4766ce5d9593af2"
39 "sha512=d5f00c411dbdffe6cabc7ec309550c4f947e79c9ff6c95cbb2d148fd0bbff060db8019c9544c1db56172a6d143f810e700d7092d404ba6cbcd756cbaa896813f"
40 ]
41}