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.2.0/oskel-0.2.0.tbz"
43 checksum: [
44 "sha256=aaea2ff830518c17399f40df4d1d7c1d4c08867ea0506e41b78acdfea655f5cb"
45 "sha512=61edf40c42d2fa8e33554848bab1eaf951064050b14a2768d5e83d1adbb79e23021b4310a51e9553b5ae875f86729c5d7fd0aca03a97cab7b0164b30006b00c1"
46 ]
47}