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.1/spin-0.5.1.tbz" 45 checksum: [ 46 "sha256=63f80ce6baa89438f3b5b5f0a07fe8ec3648a0af2116f64d1ced0a55e1db1452" 47 "sha512=15df032c37f5bebab26e36b732c8c4fd5e63ade258a4c045e601f61fe142c01757e83a3903e76114e606ef7aea0bb46f998f98bf94dde40c07168cf5e009be22" 48 ] 49}