this repo has no description
1opam-version: "2.0"
2synopsis:
3 "Project scaffolding tool and set of templates for Reason and OCaml"
4description: """
5Project scaffolding tool and set of templates for Reason and OCaml
6"""
7maintainer: ["Thibaut Mattio"]
8authors: ["Thibaut Mattio"]
9license: "MIT"
10homepage: "https://github.com/tmattio/spin"
11doc: "https://tmattio.github.io/spin"
12bug-reports: "https://github.com/tmattio/spin/issues"
13depends: [
14 "ocaml" {>= "4.06.0"}
15 "dune" {>= "2.0"}
16 "odoc" {with-doc}
17 "reason" {build}
18 "base" {>= "v0.13" & < "v0.17"}
19 "stdio" {>= "v0.13"}
20 "cmdliner"
21 "fileutils"
22 "jingoo" {>= "1.3.0"}
23 "lwt"
24 "ppx_sexp_conv" {>= "v0.13"}
25 "sexplib" {>= "v0.13"}
26]
27dev-repo: "git+https://github.com/tmattio/spin.git"
28# We need to avoid "@runtest", since it depends on rely
29build: [
30 ["dune" "subst"] {dev}
31 [
32 "dune"
33 "build"
34 "-p"
35 name
36 "-j"
37 jobs
38 "@install"
39 "@doc" {with-doc}
40 ]
41]
42url {
43 src:
44 "https://github.com/tmattio/spin/releases/download/0.5.0/spin-0.5.0.tbz"
45 checksum: [
46 "sha256=99368bedae2b37dc243027c49b8465ea4891864cf01a193d6b99751458428443"
47 "sha512=55de0b9d973ac6de9586950b314ef2d396c52e8cc61427b48c9b65a25770305053a2c274497649e37cb1b8584f9b3a2d2b9b03427437344ca250649ab51dc3c6"
48 ]
49}