this repo has no description
1opam-version: "2.0" 2synopsis: "Helper library for gathering system configuration" 3description: """ 4dune-configurator is a small library that helps writing OCaml scripts that 5test features available on the system, in order to generate config.h 6files for instance. 7Among other things, dune-configurator allows one to: 8- test if a C program compiles 9- query pkg-config 10- import #define from OCaml header files 11- generate config.h file 12""" 13maintainer: ["Jane Street Group, LLC"] 14authors: ["Jane Street Group, LLC"] 15license: "MIT" 16homepage: "https://github.com/ocaml/dune" 17doc: "https://dune.readthedocs.io/" 18bug-reports: "https://github.com/ocaml/dune/issues" 19depends: [ 20 "dune" {>= "2.8"} 21 "ocaml" {>= "4.03.0"} 22 "result" 23 "csexp" {>= "1.3.0"} 24 "odoc" {with-doc} 25] 26dev-repo: "git+https://github.com/ocaml/dune.git" 27patches: ["add-missing-version.patch"] 28build: [ 29 ["dune" "subst"] {dev} 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@doc" {with-doc} 39 ] 40] 41x-commit-hash: "06f18009cb3c32d32712ecc992c4e45932882022" 42url { 43 src: "https://github.com/ocaml/dune/releases/download/2.8.0/dune-2.8.0.tbz" 44 checksum: [ 45 "sha256=07104d9a51c85f7100cc95e633e1f07e6436b0f0e68ab38e87328e74a9f0d48b" 46 "sha512=615958292b9437e16e363c36b02efdc85b78e6e29b301cea23d8ab3ac206dc6546fcd392017967ba54258326ceb997baec9a8053e4d343429a9e48ceeb89f5e8" 47 ] 48} 49extra-source "add-missing-version.patch" { 50 src: 51 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/dune-configurator/add-missing-version.patch" 52 checksum: [ 53 "sha256=e93c2e0ba014ec94f328f31d57b5599ae36d5e9785246d8b0f52a08c67eddd95" 54 "md5=afde317f7bfc202aa04f380f66e67e52" 55 ] 56}