this repo has no description
1opam-version: "2.0"
2synopsis: "Private libraries of Dune"
3description: """
4!!!!!!!!!!!!!!!!!!!!!!
5!!!!! DO NOT USE !!!!!
6!!!!!!!!!!!!!!!!!!!!!!
7
8This package contains code that is shared between various dune-xxx
9packages. However, it is not meant for public consumption and provides
10no stability guarantee.
11"""
12maintainer: ["Jane Street Group, LLC"]
13authors: ["Jane Street Group, LLC"]
14license: "MIT"
15homepage: "https://github.com/ocaml/dune"
16doc: "https://dune.readthedocs.io/"
17bug-reports: "https://github.com/ocaml/dune/issues"
18depends: [
19 "dune" {>= "2.7"}
20 "ocaml" {>= "4.10" & < "5.0"}
21 "odoc" {with-doc}
22]
23dev-repo: "git+https://github.com/ocaml/dune.git"
24build: [
25 ["dune" "subst"] {dev}
26 [
27 "dune"
28 "build"
29 "-p"
30 name
31 "-j"
32 jobs
33 "@install"
34 "@doc" {with-doc}
35 ]
36]
37url {
38 src: "https://github.com/ocaml/dune/releases/download/2.7.0/dune-2.7.0.tbz"
39 checksum: [
40 "sha256=b417ca85bdce4171e71255be4a9c5a7572646cb1dcb221bba3757dc6ac8f1c15"
41 "sha512=5e5b649b1a16747bf2a0bf093ecf2dc701b2713c166e3d25731422bba2b94e807ded2242ee0e750e2264d21a03c966c24f4812c6d5ed690bba60543db7303f89"
42 ]
43}