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" {>= "5.1.0"} 14 "async" {>= "v0.17" & < "v0.18"} 15 "core" {>= "v0.17" & < "v0.18"} 16 "core_unix" {>= "v0.17" & < "v0.18"} 17 "ppx_jane" {>= "v0.17" & < "v0.18"} 18 "dune" {>= "3.11.0"} 19] 20available: arch != "arm32" & arch != "x86_32" 21synopsis: "Helper library for retrieving configuration from an environment variable" 22description: " 23The Env_config library is a helper for retrieving library and program 24configuration from an environment variable. Its goal is to make it easy 25to override a configuration that is loaded from disk, computed, or embedded 26in a library. 27" 28url { 29src: "https://github.com/janestreet/env_config/archive/refs/tags/v0.17.0.tar.gz" 30checksum: "sha256=5bba9ff31f93acf2ffc551f6415228116ca435708c008667a32900ba5678cd9e" 31}