this repo has no description
1opam-version: "2.0" 2synopsis: "[experimental] API for writing dynamic Dune actions" 3description: """ 4 5This library is experimental. No backwards compatibility is implied. 6 7dune-action-plugin provides an API for writing dynamic Dune actions. 8Dynamic dune actions do not need to declare their dependencies 9upfront; they are instead discovered automatically during the 10execution of the action. 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.3"} 20 "dune-glob" 21 "ppx_expect" {with-test} 22 "dune-private-libs" {= version} 23] 24dev-repo: "git+https://github.com/ocaml/dune.git" 25build: [ 26 ["dune" "subst"] {dev} 27 [ 28 "dune" 29 "build" 30 "-p" 31 name 32 "-j" 33 jobs 34 "@install" 35 "@doc" {with-doc} 36 ] 37] 38url { 39 src: "https://github.com/ocaml/dune/releases/download/2.5.1/dune-2.5.1.tbz" 40 checksum: [ 41 "sha256=8f77d3a87f208e0d7cccaa1c48c4bb1bb87d62d07c3f25e9b8ba298e028ce52b" 42 "sha512=f209f12ced10c1abf8782bdb0143f4cec77795f7174d2cc75130afb1e01550b01f2f77b9e3ec4888efdad83d2f9878d179b39126f824f4e522f3ef4da34bf27e" 43 ] 44}