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/leostera/config.ml"
12bug-reports: "https://github.com/leostera/config.ml/issues"
13depends: [
14 "ocaml" {>= "5.1"}
15 "ppxlib" {>= "0.31.0" & < "0.36.0"}
16 "sedlex" {>= "3.2"}
17 "spices" {>= "0.0.2"}
18 "dune" {>= "3.11"}
19 "odoc" {with-doc}
20]
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@runtest" {with-test}
32 "@doc" {with-doc}
33 ]
34]
35dev-repo: "git+https://github.com/leostera/config.ml.git"
36url {
37 src:
38 "https://github.com/leostera/config.ml/releases/download/0.0.1/config-0.0.1.tbz"
39 checksum: [
40 "sha256=334d3c92993033388f5fbacd8ee36d15dcff35d03626f0215279594a208aa19c"
41 "sha512=1a494f4a3e6fedc570c4949485e80154c6262b0e99c389c31b10801306e1a7f7b7d2193bc3f0fb4ae331e49838e6ac11eff6c024328aa833573ed4b99bf03176"
42 ]
43}
44x-commit-hash: "65cbaacc340be3935a981bc38a33ca14371c7a14"