this repo has no description
1opam-version: "2.0"
2synopsis: "Embed build informations 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"]
12authors: ["Jane Street Group, LLC"]
13license: "MIT"
14homepage: "https://github.com/ocaml/dune"
15doc: "https://dune.readthedocs.io/"
16bug-reports: "https://github.com/ocaml/dune/issues"
17depends: [
18 "dune" {>= "2.3"}
19]
20dev-repo: "git+https://github.com/ocaml/dune.git"
21build: [
22 ["dune" "subst"] {dev}
23 [
24 "dune"
25 "build"
26 "-p"
27 name
28 "-j"
29 jobs
30 "@install"
31 "@doc" {with-doc}
32 ]
33]
34url {
35 src: "https://github.com/ocaml/dune/releases/download/2.4.0/dune-2.4.0.tbz"
36 checksum: [
37 "sha256=28f1484a798103021833d544f1a79b0234cca77add49bba073013eae94b9dc24"
38 "sha512=aa8561d7174f8435a0e86fbd165005a121797e5e5e46d50d5dc75c863bde0e2945311222cadb8ac27e75052bedbae9edf418cb1130f50d807705218ee284a19b"
39 ]
40}