this repo has no description
1opam-version: "2.0" 2maintainer: "rgrinberg <rudi.grinberg@gmail.com>" 3authors: "rgrinberg <rudi.grinberg@gmail.com>" 4homepage: "https://github.com/rgrinberg/ocaml-depgraph" 5bug-reports: "https://github.com/rgrinberg/ocaml-depgraph/issues" 6license: "MIT" 7dev-repo: "git+https://github.com/rgrinberg/ocaml-depgraph" 8build: ["omake"] 9depends: [ 10 "ocaml" {>= "4.02.3" & < "5.0"} 11 "ocamlfind" {build} 12 "omake" {build} 13 "cmdliner" 14 "ocamlgraph" 15] 16synopsis: "dot graphs out of ocamldep output" 17description: """ 18depgraph will read source ml and mli source files from STDIN and use ocamldep 19to construct a dependency graph. It will then output the dependency graph in 20the .dot format. 21 22NOTE: This tool doesn't work well in the presence of packs 23 24Example: 25$ git ls-files | depgraph -i "test_" > g.dot""" 26url { 27 src: "https://github.com/rgrinberg/ocaml-depgraph/archive/v0.1.0.tar.gz" 28 checksum: [ 29 "sha256=5a03093ec3f8630e0af5c5a779aa4dcedfd0bf52b27bae00b6a251d9276c8b6f" 30 "md5=fe2edddf8ecfcf6b40fcc22ebe6992f7" 31 ] 32}