this repo has no description
1opam-version: "2.0"
2synopsis: "Show dependency graph of a multi-component dune project"
3description: """
4Dune-deps scans a dune project and produces a dependency graph
5which can be rendered with 'dot'. It is useful for projects that define
6multiple libraries or executables. It allows the developer to visualize
7the dependencies between the various components of a project."""
8maintainer: ["Martin Jambon <martin@mjambon.com>"]
9authors: ["Martin Jambon" "OCaml community"]
10license: "BSD-3-Clause"
11homepage: "https://github.com/mjambon/dune-deps"
12bug-reports: "https://github.com/mjambon/dune-deps/issues"
13depends: [
14 "dune" {>= "3.0"}
15 "ocaml" {>= "4.08.0"}
16 "cmdliner" {>= "1.1.1"}
17 "sexplib"
18 "alcotest" {with-test}
19 "odoc" {with-doc}
20]
21depopts: ["conf-graphviz"]
22build: [
23 ["dune" "subst"] {dev}
24 [
25 "dune"
26 "build"
27 "-p"
28 name
29 "-j"
30 jobs
31 "@install"
32 "@runtest" {with-test}
33 "@doc" {with-doc}
34 ]
35]
36dev-repo: "git+https://github.com/mjambon/dune-deps.git"
37url {
38 src:
39 "https://github.com/mjambon/dune-deps/releases/download/1.4.0/dune-deps-1.4.0.tbz"
40 checksum: [
41 "sha256=4c83aca16f9eae9048d14730726699a6be08e16ce33c12777c863462dcb12acb"
42 "sha512=14eff94029bcaa469bfd295efcbb4418a8a8f20c1c1e83f5b0611d9ae37286b00b0fe07fdd9ea96bba198440e4e68cb0fcf7dfc7baf05f1d05500c6894496d2a"
43 ]
44}
45x-commit-hash: "976d4f3f0f14c01a4ecefd42cc80190200942c03"