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" {>= "3.0"} 20 "dune-glob" {= version} 21 "csexp" {>= "1.5.0"} 22 "ppx_expect" {with-test} 23 "stdune" {= version} 24 "dune-private-libs" {= version} 25 "odoc" {with-doc} 26] 27dev-repo: "git+https://github.com/ocaml/dune.git" 28build: [ 29 ["dune" "subst"] {dev} 30 ["rm" "-rf" "vendor/csexp"] 31 ["rm" "-rf" "vendor/pp"] 32 [ 33 "dune" 34 "build" 35 "-p" 36 name 37 "-j" 38 jobs 39 "@install" 40 "@doc" {with-doc} 41 ] 42] 43url { 44 src: 45 "https://github.com/ocaml/dune/releases/download/3.2.0/chrome-trace-3.2.0.tbz" 46 checksum: [ 47 "sha256=bd1fbce6ae79ed1eb26fa89bb2e2e23978afceb3f53f5578cf1bdab08a1ad5bc" 48 "sha512=b99e82d7e2233a9dd8c1fae591a03f9470fcdf9750d0e428cee2d4c8bcfa4da1595e9e10af2f234279a6ca8a120a773b247d4761d2c39210fc6101076631690e" 49 ] 50} 51x-commit-hash: "43af00f79e41ce9101d42b36dab13e1f68d49a7a"