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 "cmdliner"
15 "dune" {>= "2.1"}
16 "ocaml"
17 "sexplib"
18]
19
20synopsis: "Show dependency graph of a multi-component dune project"
21
22description: """
23Dune-deps scans a dune project and produces a dependency graph
24which can be rendered with 'dot'. It is useful for projects that define
25multiple libraries or executables. It allows the developer to visualize
26the dependencies between the various components of a project.
27"""
28
29url {
30 src: "https://github.com/mjambon/dune-deps/archive/v1.1.0.tar.gz"
31 checksum: [
32 "sha256=e3bd43cf691c748bf521b799acbf9219ec4a533b7ff51a4bcec8faa992ff6639"
33 "md5=53700d2e414490a15266c68b9a4fa5a3"
34 ]
35}