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 "ocaml-syntax-shims"
25 "lwt"
26]
27build: [
28 ["dune" "subst"] {dev}
29 [
30 "dune"
31 "build"
32 "-p"
33 name
34 "-j"
35 jobs
36 "@install"
37 "@runtest" {with-test}
38 "@doc" {with-doc}
39 ]
40]
41dev-repo: "git+https://github.com/CraigFe/oskel.git"
42url {
43 src:
44 "https://github.com/CraigFe/oskel/releases/download/0.3.0/oskel-0.3.0.tbz"
45 checksum: [
46 "sha256=e7d1abb7cb501334ca495757ef10744883f3773cac8ac67de54394ad5f6dc71b"
47 "sha512=228b11bd586b322f0306a08448ef800fc067e4e8979a812590c4bda50ea499d055fb0ecd429ad73caba599fdcd98da8d2ad1fb42253a3d1c6a3ea9737f213cdb"
48 ]
49}