this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/core" 5bug-reports: "https://github.com/janestreet/core/issues" 6dev-repo: "git+https://github.com/janestreet/core.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/core/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0" & < "4.12.0"} 14 "core_kernel" {>= "v0.14" & < "v0.15"} 15 "jst-config" {>= "v0.14" & < "v0.15"} 16 "ppx_jane" {>= "v0.14" & < "v0.15"} 17 "sexplib" {>= "v0.14" & < "v0.15"} 18 "timezone" {>= "v0.14" & < "v0.15"} 19 "base-threads" 20 "dune" {>= "2.0.0"} 21 "spawn" {>= "v0.12"} 22] 23synopsis: "Industrial strength alternative to OCaml's standard library" 24description: " 25The Core suite of libraries is an industrial strength alternative to 26OCaml's standard library that was developed by Jane Street, the 27largest industrial user of OCaml. 28" 29depexts: ["linux-headers"] {os-distribution = "alpine"} 30url { 31 src: 32 "https://ocaml.janestreet.com/ocaml-core/v0.14/files/core-v0.14.0.tar.gz" 33 checksum: [ 34 "sha256=08447e7d539b69d13b2633c61bab5fdb81624b1391540be097a6a91023f9ce33" 35 "md5=571dc65fff922c86951068d66e4a05ca" 36 ] 37} 38available: [ !(os = "freebsd" & os-version >= "14") ]