this repo has no description
1opam-version: "2.0" 2synopsis: "Graphing dependencies of opam packages" 3description: """\ 4This package outputs dependency graphs (in svg and dot) of opam package 5universes (opam switch export --full --freeze).""" 6maintainer: "Robur <team@robur.coop>" 7authors: "Robur <team@robur.coop>" 8license: "ISC" 9homepage: "https://git.robur.coop/robur/opam-graph" 10bug-reports: "https://github.com/robur-coop/opam-graph/issues" 11depends: [ 12 "ocaml" {>= "4.08.0"} 13 "dune" {>= "2.0.0"} 14 "cmdliner" {>= "1.1.0"} 15 "fmt" {>= "0.8.7"} 16 "logs" 17 "opam-core" 18 "opam-format" {>= "2.1.1"} 19 "ocamldot" 20 "tyxml" {>= "4.3.0"} 21 "gg" 22] 23build: [ 24 ["dune" "subst"] {dev} 25 ["dune" "build" "-p" name "-j" jobs] 26 ["sh" "-ex" "packaging/FreeBSD/create_package.sh"] {os = "freebsd"} 27 ["sh" "-ex" "packaging/debian/create_package.sh"] {os-family = "debian"} 28] 29dev-repo: "git+https://git.robur.coop/robur/opam-graph.git" 30url { 31 src: 32 "https://github.com/ocaml/opam-source-archives/raw/main/opam-graph-0.1.1.tar.bz2" 33 checksum: [ 34 "sha512=33e76715684b9f34f97f34a3033975beafa3cbcf88a861e937b80b6c4b08d4dd9b2aa1f7da51830a44166ae519c9a6c3f695c9b9af5583e17140359e0de1d73e" 35 ] 36}