this repo has no description
1opam-version: "2.0" 2synopsis: "Ergonomic, lightweight conditional compilation through attributes" 3description: 4 "Config implements the [@@config] annotation, to conditionally compile modules. You can use a small boolean language to check for conditions including some built-in ones and environment variables." 5maintainer: ["Leandro Ostera <leandro@abstractmachines.dev>"] 6authors: ["Leandro Ostera <leandro@abstractmachines.dev>"] 7license: "MIT" 8tags: [ 9 "conditional" "compilation" "target_os" "target_arch" "arch" "os" "system" 10] 11homepage: "https://github.com/ocaml-sys/config.ml" 12bug-reports: "https://github.com/ocaml-sys/config.ml/issues" 13depends: [ 14 "ocaml" {< "5.2~~" & with-test} 15 "ppxlib" {>= "0.31.0" & < "0.36.0"} 16 "spices" {>= "0.0.2"} 17 "dune" {>= "3.11"} 18 "odoc" {with-doc} 19] 20build: [ 21 ["dune" "subst"] {dev} 22 [ 23 "dune" 24 "build" 25 "-p" 26 name 27 "-j" 28 jobs 29 "@install" 30 "@runtest" {with-test} 31 "@doc" {with-doc} 32 ] 33] 34dev-repo: "git+https://github.com/ocaml-sys/config.ml.git" 35url { 36 src: 37 "https://github.com/ocaml-sys/config.ml/releases/download/0.0.3/config-0.0.3.tbz" 38 checksum: [ 39 "sha256=6dc4427cb5f6ae8f2f9d04c9897d9a606242f9e0f6eaf90fca731883cd7b6053" 40 "sha512=a3f81bf8975f6f8d69c8c1b4cc041f37be19b311797573f960afaf21beac99292e255c87ee661f40be8e5f1aaf27a64754e0a6155ef0f9785024cea0c17f8eb9" 41 ] 42} 43x-commit-hash: "1cbc2d439d86969cf15771e45b7fbd9866bae129"