this repo has no description
1opam-version: "2.0"
2synopsis: "A project generator for Reason and OCaml"
3description: """
4A project generator for Reason and OCaml
5"""
6maintainer: ["Thibaut Mattio"]
7authors: ["Thibaut Mattio"]
8license: "MIT"
9homepage: "https://github.com/tmattio/spin"
10doc: "https://tmattio.github.io/spin/"
11bug-reports: "https://github.com/tmattio/spin/issues"
12depends: [
13 "ocaml" {>= "4.08.0"}
14 "dune" {>= "2.4"}
15 "mdx" {with-test}
16 "alcotest" {with-test & < "1.2.0"}
17 "odoc" {with-doc}
18 "crunch" {build}
19 "base" {>= "v0.13"}
20 "stdio" {>= "v0.13"}
21 "fmt" {>= "0.8.7"}
22 "fpath"
23 "cmdliner"
24 "logs"
25 "sexplib" {>= "v0.13"}
26 "lwt" {>= "5.3.0"}
27 "jingoo" {>= "1.3.0"}
28 "reason" {>= "3.6.0" & < "3.7.0"}
29 "inquire" {>= "0.2.0" & < "0.3.0"}
30]
31build: [
32 ["dune" "subst"] {dev}
33 [
34 "dune"
35 "build"
36 "-p"
37 name
38 "-j"
39 jobs
40 "@install"
41 "@test/runtest" {with-test & arch = "x86_64"}
42 "@test_bin/runtest" {with-test}
43 "@doc" {with-doc}
44 ]
45]
46dev-repo: "git+https://github.com/tmattio/spin.git"
47url {
48 src:
49 "https://github.com/tmattio/spin/releases/download/0.6.0/spin-0.6.0.tbz"
50 checksum: [
51 "sha256=2fea29779b8751651e101064affbfc482c62c68fc6672f28a314ae60f30c75c2"
52 "sha512=df00a63f6f12fe8ebd1626356741256f00c2c51878f227bca4243c83ff8dbbe1734fe7ce70d22ecb134968795e166ea5770fc038551f48fb6d510e52c3234c2e"
53 ]
54}