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 <opensource@janestreet.com>"] 13authors: ["Jane Street Group, LLC <opensource@janestreet.com>"] 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.9"} 20 "dune-glob" 21 "ppx_expect" {with-test} 22 "dune-private-libs" {= version} 23 "odoc" {with-doc} 24] 25dev-repo: "git+https://github.com/ocaml/dune.git" 26build: [ 27 ["dune" "subst"] {dev} 28 [ 29 "dune" 30 "build" 31 "-p" 32 name 33 "-j" 34 jobs 35 "@install" 36 "@doc" {with-doc} 37 ] 38] 39url { 40 src: 41 "https://github.com/ocaml/dune/releases/download/2.9.3/dune-site-2.9.3.tbz" 42 checksum: [ 43 "sha256=3e65ec73ab2c80d50d4ffd6c46cbfb22eacd0e5587a4be8af8ae69547d5f88d6" 44 "sha512=04b48501ac16c3608e3b6bfbdbabf810df0fb844ea3b7d25ba50f03b9d6cb1d2c933cf747d694029d82a9777a774e48e5c38ab010fe53ce1eae367da0ed04d6d" 45 ] 46} 47x-commit-hash: "dea03875affccc0620e902d28fed8d6b4351e112"