this repo has no description
1opam-version: "2.0" 2maintainer: "Gabriel Radanne <drupyog@zoho.com>" 3authors: [ "Thomas Gazagnaire" 4 "Anil Madhavapeddy" 5 "Dave Scott" 6 "Thomas Leonard" 7 "Gabriel Radanne" ] 8homepage: "https://github.com/mirage/functoria" 9bug-reports: "https://github.com/mirage/functoria/issues" 10dev-repo: "git+https://github.com/mirage/functoria.git" 11doc: "https://mirage.github.io/functoria/" 12license: "ISC" 13tags: ["org:mirage"] 14 15build: [ 16 ["dune" "subst"] {dev} 17 ["dune" "build" "-p" name "-j" jobs] 18 ["dune" "runtest" "-p" name "-j" jobs] {with-test} 19] 20 21depends: [ 22 "ocaml" {>= "4.04.0"} 23 "dune" {>= "1.1.0"} 24 "base-unix" 25 "cmdliner" {>= "0.9.8" & < "1.1.0"} 26 "rresult" 27 "astring" 28 "fmt" {>= "0.8.5"} 29 "ocamlgraph" 30 "logs" 31 "bos" 32 "fpath" 33 "alcotest" {with-test} 34 "ptime" 35] 36synopsis: "A DSL to organize functor applications" 37description: """ 38Functoria is a DSL to describe a set of modules and functors, their types and 39how to apply them in order to produce a complete application. 40 41The main use case is mirage. See the [mirage](https://github.com/mirage/mirage) 42repository for details. 43""" 44url { 45 src: 46 "https://github.com/mirage/functoria/releases/download/v3.1.1/functoria-v3.1.1.tbz" 47 checksum: [ 48 "sha256=f538c1ce7ac0820d2542c2d851bdf0bb8e94d0e7689199dd899a7f13f0ea302e" 49 "sha512=335ccc45f87be4c5f3d1f40bace93e15fdabcc612e1868a31dffa7f80b9742e786387648e644fe56085c2c67cede735cf40acc568e789e8fa13597a0a325d210" 50 ] 51} 52available: opam-version >= "2.2.0" 53flags: deprecated