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 <opensource@janestreet.com>"] 14authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] 15license: "MIT" 16homepage: "https://github.com/ocaml/dune" 17doc: "https://dune.readthedocs.io/" 18bug-reports: "https://github.com/ocaml/dune/issues" 19depends: [ 20 "dune" {>= "3.0"} 21 "ocaml" {>= "4.04.0"} 22 "csexp" {>= "1.5.0"} 23 "odoc" {with-doc} 24] 25dev-repo: "git+https://github.com/ocaml/dune.git" 26build: [ 27 ["dune" "subst"] {dev} 28 ["rm" "-rf" "vendor/csexp"] 29 ["rm" "-rf" "vendor/pp"] 30 [ 31 "dune" 32 "build" 33 "-p" 34 name 35 "-j" 36 jobs 37 "@install" 38 "@doc" {with-doc} 39 ] 40] 41url { 42 src: 43 "https://github.com/ocaml/dune/releases/download/3.1.1/fiber-3.1.1.tbz" 44 checksum: [ 45 "sha256=02484454ab1b998840c7873509ec6b2301eb92662c132ef8f5f4f569b35a6b60" 46 "sha512=c92199924af75f801d264d3b3e98497757c9932d8e03fa100fca2df16315b87d595a3e0cbbc3ce9b8d86adb2a8b6d3a7cef0f88c7654f15f6b6a4d10d523fad1" 47 ] 48} 49x-commit-hash: "09eac98ced1fff7dea4e5ac45b59e00c1874067e"