this repo has no description
1opam-version: "2.0"
2synopsis: "Skeleton generator for OCaml projects"
3description: """
4Skeleton generator for OCaml projects
5
6oskel is a tool for generating stubs of OCaml projects pre-equipped with the
7standard boilerplate: OCamlformat config file, Alcotest scaffolding,
8auto-generation of [*.opam] files via [dune-project] etc. It supports generating
9binaries with Cmdliner, Fmt and Logs support. The resulting projects are
10compliant with [dune-release lint].
11"""
12maintainer: ["Craig Ferguson <me@craigfe.io>"]
13authors: ["Craig Ferguson <me@craigfe.io>"]
14homepage: "https://github.com/CraigFe/oskel"
15doc: "https://CraigFe.github.io/oskel"
16bug-reports: "https://github.com/CraigFe/oskel/issues"
17depends: [
18 "dune" {>= "2.0"}
19 "cmdliner" {< "2.0.0"}
20 "cmdliner" {with-test & < "1.1.0"}
21 "fmt" {>= "0.8.7"}
22 "logs"
23 "stdlib-shims"
24]
25build: [
26 ["dune" "subst"] {dev}
27 [
28 "dune"
29 "build"
30 "-p"
31 name
32 "-j"
33 jobs
34 "@install"
35 "@runtest" {with-test}
36 "@doc" {with-doc}
37 ]
38]
39dev-repo: "git+https://github.com/CraigFe/oskel.git"
40url {
41 src:
42 "https://github.com/CraigFe/oskel/releases/download/0.1.0/oskel-0.1.0.tbz"
43 checksum: [
44 "sha256=b8ae65e5caa2baaafa267fddd78f6f04707c213dbac3e3622f292a6ee1cc3d7c"
45 "sha512=a4cf293c63d322ac393dbd236900a7ad6632b0cf25943f9a44cf0cb6ffcb773e32e40b82ba660e40a543d5921ed90fd227c7752ba38117d2bc2fe78e0f87fb75"
46 ]
47}