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.12"}
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"
30x-maintenance-intent: ["(latest)"]
31build: [
32 ["dune" "subst"] {dev}
33 ["rm" "-rf" "vendor/csexp"]
34 ["rm" "-rf" "vendor/pp"]
35 [
36 "dune"
37 "build"
38 "-p"
39 name
40 "-j"
41 jobs
42 "@install"
43 "@doc" {with-doc}
44 ]
45]
46url {
47 src:
48 "https://github.com/ocaml/dune/releases/download/3.17.2/dune-3.17.2.tbz"
49 checksum: [
50 "sha256=9deafeed0ecfe9e65e642cd8e6197f0864f73fcd7b94b5b199ae4d2e07a2ea64"
51 "sha512=1e85bb297a12c9571b8645541d85a719deffb619d5e4f48dbf4566ac14e9f385d8a05342698a6f9c81ba17325b1da4ad004a5772d66cd88ed135c43d43e88f9e"
52 ]
53}
54x-commit-hash: "fedec664a6ba500f94ba4558112f52d5719bed4d"