A CLI tool that generates an opam repository and monorepo from a list of git repos
1(lang dune 3.0)
2
3(name repo_tool)
4
5(generate_opam_files true)
6
7(source
8 (github mtelvers/repo-tool))
9
10(authors "Mark Elvers")
11
12(maintainers "Mark Elvers")
13
14(license MIT)
15
16(package
17 (name repo_tool)
18 (synopsis "Generate opam repository from git repositories")
19 (description
20 "A CLI tool that reads a text file containing git repository URLs and generates an opam repository structure that can be overlaid on the official opam repository.")
21 (depends
22 (ocaml (>= 4.14))
23 dune
24 cmdliner))