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.8"} 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" 26patches: ["add-missing-version.patch"] 27build: [ 28 ["dune" "subst"] {dev} 29 [ 30 "dune" 31 "build" 32 "-p" 33 name 34 "-j" 35 jobs 36 "@install" 37 "@doc" {with-doc} 38 ] 39] 40x-commit-hash: "06f18009cb3c32d32712ecc992c4e45932882022" 41url { 42 src: "https://github.com/ocaml/dune/releases/download/2.8.0/dune-2.8.0.tbz" 43 checksum: [ 44 "sha256=07104d9a51c85f7100cc95e633e1f07e6436b0f0e68ab38e87328e74a9f0d48b" 45 "sha512=615958292b9437e16e363c36b02efdc85b78e6e29b301cea23d8ab3ac206dc6546fcd392017967ba54258326ceb997baec9a8053e4d343429a9e48ceeb89f5e8" 46 ] 47} 48extra-source "add-missing-version.patch" { 49 src: 50 "https://raw.githubusercontent.com/ocaml/opam-source-archives/main/patches/dune-action-plugin/add-missing-version.patch" 51 checksum: [ 52 "sha256=e93c2e0ba014ec94f328f31d57b5599ae36d5e9785246d8b0f52a08c67eddd95" 53 "md5=afde317f7bfc202aa04f380f66e67e52" 54 ] 55}