this repo has no description
1opam-version: "2.0"
2maintainer: "martin@mjambon.com"
3authors: ["Martin Jambon"]
4homepage: "https://github.com/mjambon/dune-deps"
5bug-reports: "https://github.com/mjambon/dune-deps/issues"
6dev-repo: "git+https://github.com/mjambon/dune-deps.git"
7license: "BSD-3-Clause"
8
9build: [
10 ["dune" "build" "-p" name "-j" jobs]
11]
12
13depends: [
14 "dune" {>= "2.1"}
15 "ocaml"
16 "sexplib"
17]
18
19synopsis: "Show dependency graph of a multi-component dune project"
20
21description: """
22Dune-deps scans a dune project and produces a dependency graph
23which can be rendered with 'dot'. It is useful for projects that define
24multiple libraries or executables. It allows the developer to visualize
25the dependencies between the various components of a project.
26"""
27
28url {
29 src: "https://github.com/mjambon/dune-deps/archive/v1.0.2.tar.gz"
30 checksum: [
31 "sha256=9c8f98b8f6814c353653175825ac7adfff8f32d313f961a0a871864a40ce2052"
32 "md5=60dfbf8dd168d0eb80b7a4a214be679c"
33 ]
34}