this repo has no description
1opam-version: "2.0" 2synopsis: "Embed build information inside executable" 3description: """ 4The build-info library allows to access information about how the 5executable was built, such as the version of the project at which it 6was built or the list of statically linked libraries with their 7versions. It supports reporting the version from the version control 8system during development to get an precise reference of when the 9executable was built. 10""" 11maintainer: ["Jane Street Group, LLC <opensource@janestreet.com>"] 12authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] 13license: "MIT" 14homepage: "https://github.com/ocaml/dune" 15doc: "https://dune.readthedocs.io/" 16bug-reports: "https://github.com/ocaml/dune/issues" 17depends: [ 18 "dune" {>= "3.5"} 19 "ocaml" {>= "4.08"} 20 "odoc" {with-doc} 21] 22dev-repo: "git+https://github.com/ocaml/dune.git" 23build: [ 24 ["dune" "subst"] {dev} 25 ["rm" "-rf" "vendor/csexp"] 26 ["rm" "-rf" "vendor/pp"] 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@doc" {with-doc} 36 ] 37] 38url { 39 src: 40 "https://github.com/ocaml/dune/releases/download/3.13.1/dune-3.13.1.tbz" 41 checksum: [ 42 "sha256=2fe0af1b4cf98649c7555b555d9f4f81d5ded87718a89df4988e214a56c8a916" 43 "sha512=25b95d616f5d62d065c4458caa211c20615e1bf361fd13d6fd037c216b9566034b45581b7b1dfe43f051c3cdbcf5fe8ffb9c74b5974f2fb6204a3da11ea87c28" 44 ] 45} 46x-commit-hash: "b98be5f4c2bbac6f07ad0a9fa28de177f666b509"