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.6"} 20 "ocaml" {>= "4.07" & < "5.0"} 21] 22dev-repo: "git+https://github.com/ocaml/dune.git" 23build: [ 24 ["dune" "subst"] {dev} 25 [ 26 "dune" 27 "build" 28 "-p" 29 name 30 "-j" 31 jobs 32 "@install" 33 "@doc" {with-doc} 34 ] 35] 36url { 37 src: "https://github.com/ocaml/dune/releases/download/2.6.0/dune-2.6.0.tbz" 38 checksum: [ 39 "sha256=12c9d849fbc5f202f99e9f8ed13fdff7de85ae9c5206cb1b821763dcd1916fc3" 40 "sha512=de808537e471ef5a4ca49f68bfaf99d36441b5d30bc66712467a636e7bf69ea825e30286d882dac4e18a36c3eae45a80c3407d86255484c76570f771d84ce8b5" 41 ] 42}