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.0.2/functoria-v3.0.2.tbz" 47 checksum: [ 48 "sha256=e8c5462ff91b7acebeb57a7cad3de0d3ecb0374b3c6eb3b380b0048c5e142a6f" 49 "sha512=2284fdf6259e48e3e3b73440a39f59bbd2968bee59af87ded5a6e9dbb32dde0998eac72a5cf56fe0978191bbb2ebc675fc50337a4820b6a13d71f28c6108dde9" 50 ] 51} 52available: opam-version >= "2.2.0" 53flags: deprecated