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