this repo has no description
1opam-version: "2.0" 2maintainer: "Jane Street developers" 3authors: ["Jane Street Group, LLC"] 4homepage: "https://github.com/janestreet/env_config" 5bug-reports: "https://github.com/janestreet/env_config/issues" 6dev-repo: "git+https://github.com/janestreet/env_config.git" 7doc: "https://ocaml.janestreet.com/ocaml-core/latest/doc/env_config/index.html" 8license: "MIT" 9build: [ 10 ["dune" "build" "-p" name "-j" jobs] 11] 12depends: [ 13 "ocaml" {>= "4.08.0"} 14 "async" {>= "v0.15" & < "v0.16"} 15 "core" {>= "v0.15" & < "v0.16"} 16 "core_unix" {>= "v0.15" & < "v0.16"} 17 "ppx_jane" {>= "v0.15" & < "v0.16"} 18 "dune" {>= "2.0.0"} 19] 20synopsis: "Helper library for retrieving configuration from an environment variable" 21description: " 22The Env_config library is a helper for retrieving library and program 23configuration from an environment variable. Its goal is to make it easy 24to override a configuration that is loaded from disk, computed, or embedded 25in a library. 26" 27url { 28src: "https://ocaml.janestreet.com/ocaml-core/v0.15/files/env_config-v0.15.0.tar.gz" 29checksum: "sha256=905b9eef3d5bf6d87b03a34a21df4b03fd0dd024d8f1efc3e8ab56d4e067e6c5" 30}