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]
39x-commit-hash: "e41c66259135d6d1d72b031be6684bf8826a2586"
40url {
41 src: "https://github.com/ocaml/dune/releases/download/2.9.1/dune-2.9.1.tbz"
42 checksum: [
43 "sha256=b374feb22b34099ccc6dd32128e18d088ff9a81837952b29f05110b308c09f26"
44 "sha512=fce1aa520db785c25ded75a959e9dafeb7887d4f5deeb14b044cd5b9e2d235dca24589d794d2f01513765bc4764cf72f8659bd15f3a4fc06efa61363dc5d709b"
45 ]
46}